vite-plugin-inspect icon indicating copy to clipboard operation
vite-plugin-inspect copied to clipboard

Inspect the intermediate state of Vite plugins

Results 14 vite-plugin-inspect issues
Sort by recently updated
recently updated
newest added

### Clear and concise description of the problem https://github.com/antfu/vite-plugin-inspect/issues/33#issuecomment-1211536957 by @nksaraf ### Suggested solution I guess currently we don't distinguish between client and SSR transform. We might need two maps...

enhancement
pr welcome

### Clear and concise description of the problem Really awesome plugin here, we made it part of `solid-start` (`solid-js`'s meta-framework) by default. One part that we missed was getting this...

enhancement
pr welcome

### Description fix:issues #31 #25 ### Linked Issues ### Additional context

## Reproduction 1. clone repository 2. install dependencies 3. exec `npm run dev` 4. click `./components/DiffEditor.vue` in `localhost:3000/__inspect`, it's good 5. update `./components/DiffEditor.vue` ‘s’ `` ```diff ... .diff-added { @apply...

### Describe the bug init project with vite ,and then install **vite-plugin-inspect**. click **/src/App.vue?vue&type=style&index=0&lang.css** at http://localhost:3000/__inspect/ will got **ENOENT: no such file or directory, open '/uls/Desktop/example/my-vue-app/src/App.vue'** ![image](https://user-images.githubusercontent.com/27261522/180937388-dc0aafe4-3e30-4d87-9c05-bf06359c07f9.png) ### Reproduction none...

Could use `handleHotUpdate` and custom ws event to notify the client for refetch

enhancement
pr welcome

### Description IMHO, the `load` hook of the plugin is not necessary at all. Let's take a glance at the logic of [`hijackHood(plugin, 'load')`](https://github.com/antfu/vite-plugin-inspect/blob/main/src/node/index.ts#L144). 1. first we execute hooks to...

### Description Sorry, the original [pr/37](https://github.com/antfu/vite-plugin-inspect/pull/37) was closed due to conflicting fixes, so I re-created When I use `inspect-plugin` and `connect-history-api-fallback` to server.middlewares at the same time, connect-history-api-fallback will redirect...

### Describe the bug I have a custom loader that intercepts funky-looking import specifiers, ala: `import foo from "prefix:some-argument"`. ```js const prefix = "custom-loader:"; export default function customLoader() { return...