/ student-intifada / node_modules / vite-plugin-inspect /

[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]dist/a year ago -  
[DIR]node_modules/a year ago -  
[   ]LICENSEa year ago1.1K 
[TXT]README.mda year ago1.5K595aea1 more query options + view options [كارل مبارك]
[   ]package.jsona year ago3.8Kafd0ccc remove unused [كارل مبارك]
[TXT]splitpanes.d.tsa year ago510  
README.md

vite-plugin-inspect

NPM version

Inspect the intermediate state of Vite plugins. Useful for debugging and authoring plugins.

Install

npm i -D vite-plugin-inspect

Since vite-plugin-inspect@v0.7.0, Vite v3.1 or above is required.

Add plugin to your vite.config.ts:

// vite.config.ts
import Inspect from 'vite-plugin-inspect'

export default {
  plugins: [
    Inspect()
  ],
}

Then run npm run dev and visit localhost:5173/__inspect/ to inspect the modules.

Build Mode

To inspect transformation in build mode, you can pass the build: true option:

// vite.config.ts
import Inspect from 'vite-plugin-inspect'

export default {
  plugins: [
    Inspect({
      build: true,
      outputDir: '.vite-inspect'
    })
  ],
}

After running vite build, the inspector client will be generated under .vite-inspect, where you can use npx serve .vite-inspect to check the result.

Sponsors

License

MIT License © 2021-PRESENT Anthony Fu

Apache/2.4.38 (Debian) Server at www.karls.computer Port 80