Awesome
vite-plugin-simple-vconsole
vConsole plugin for vite, support both MPA
and SPA
.
Install
yarn add vite-plugin-simple-vconsole -D
# or
npm i vite-plugin-simple-vconsole -D
Example
See example
cd example
# yarn
yarn
yarn dev
# pnpm
pnpm i
pnpm dev
Usage
// vite.config.js
import vConsolePlugin from 'vite-plugin-simple-vconsole'
export default {
plugins: [
vConsolePlugin({
enable: true,
}),
]
}
interface VConsolePluginOptions {
enable?: boolean;
src?: string; // cdn url, default is https://unpkg.com/vconsole@latest/dist/vconsole.min.js
theme?: 'light' | 'dark';
injectTo?: 'head' | 'body'; // default 'head'
}
Options
enable
- Type:
boolean
- Default:
false
src
- Type:
string
- Default:
'https://unpkg.com/vconsole@latest/dist/vconsole.min.js'
this script will be injected to body of the entry html
theme
- Type:
'light' | 'dark'
- Default:
'light'
vConosle theme