File tree Expand file tree Collapse file tree 5 files changed +24
-11772
lines changed Expand file tree Collapse file tree 5 files changed +24
-11772
lines changed Original file line number Diff line number Diff line change 1
1
import type { StorybookConfig } from '@storybook-vue/nuxt'
2
+ import Inspect from 'vite-plugin-inspect'
2
3
3
4
const config : StorybookConfig = {
4
5
stories : [
@@ -17,5 +18,11 @@ const config: StorybookConfig = {
17
18
docs : {
18
19
autodocs : 'tag' ,
19
20
} ,
21
+ viteFinal : ( config ) => {
22
+ // For debugging purposes
23
+ // View intermediate state of Vite plugins at http://localhost:6006/__inspect
24
+ config . plugins . push ( Inspect ( ) )
25
+ return config
26
+ } ,
20
27
}
21
28
export default config
Original file line number Diff line number Diff line change 1
- # Nuxt 3 Minimal Starter
1
+ # Playground
2
+
3
+ View intermediate state of Vite plugins at ` http://localhost:6006/__inspect ` .
4
+
5
+ ---
2
6
3
7
Look at the [ Nuxt 3 documentation] ( https://nuxt.com/docs/getting-started/introduction ) to learn more.
4
8
Original file line number Diff line number Diff line change 13
13
"devDependencies" : {
14
14
"@nuxt/devtools" : " ^1.1.5" ,
15
15
"@nuxtjs/storybook" : " workspace:*" ,
16
- "@storybook/addon-links" : " ^8.0.8" ,
17
16
"@storybook/addon-essentials" : " ^8.0.8" ,
18
17
"@storybook/addon-interactions" : " ^8.0.8" ,
19
- "nuxt" : " ^3.11.1"
18
+ "@storybook/addon-links" : " ^8.0.8" ,
19
+ "nuxt" : " ^3.11.1" ,
20
+ "vite-plugin-inspect" : " ^0.8.4"
20
21
}
21
22
}
You can’t perform that action at this time.
0 commit comments