vite-plugin-inspect-config
v0.1.1
Published
inspect vite resolved config with infinite object level
Downloads
2
Readme
vite-plugin-inspect-config
Inspect vite resolved config with infinite object level
NOTE You can utilize the
DEBUG_DEPTH
environment variable within the debug package to output configuration at an infinite depth level.
Installation
npm i -D vite-plugin-inspect-config
Usage
// vite.config.ts
import vitePluginInspectConfig from 'vite-plugin-inspect-config';
export default defineConfig({
plugins: [
vitePluginInspectConfig({
// You can use shortcut `.` to output resolved config when `vite dev`
enable: true,
}),
],
});
TODOs
- [ ] output rollup, esbuild version
- [ ] output the pre built packages name
License
MIT License © 2023-PRESENT YuTengjing