1.0.0 • Published 3 years ago

umi-plugin-flexible v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

vite-plugin-flexible

Vite plugin that automatically injects flexible scripts and converts pixel units to rem units

Install

$ npm i vite-plugin-flexible -D
# or
$ yarn add vite-plugin-flexible -D

Usage

Config plugin in vite.config.ts

import { defineConfig } from 'vite';
import flexible from 'vite-plugin-flexible';

export default defineConfig({
  plugins: [
    flexible(),
  ]},
});

Flexible scripts are automatically injected into the head

<!DOCTYPE html>
<html>
  <head>
    <!-- Will be generated automatically -->
    <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no,viewport-fit=cover"
    />
    <script>
    // flexible script
    </script>
  </head>
  <body></body>
</html>

Resource