Home

Awesome

vite-plugin-simple-vconsole npm

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

src

this script will be injected to body of the entry html

theme

vConosle theme