vite-console-debug
v1.1.10
Published
π¦ π¦ unplugin console debug
Downloads
20
Maintainers
Readme
π¦ vite-console-debug
π Features
- π° Console Debug for vite and rollup.
π¦ Installation
npm i vite-console-debug@latest -D
support vite and rollup.
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import ConsoleDebug from 'vite-console-debug/vite';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), ConsoleDebug()],
});
πΈ DefaultConfiguration
export interface PluginOptions {
exclude?: string[];
noConsole?: boolean;
disableLaunchEditor?: boolean;
}