Skip to content

venojs/vite-plugin-simple-vconsole

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

  • 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

About

vConsole plugin for vite, easy to use

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published