Nuxt2 + storybook test
Nuxt 2 (Created with yarn create nuxt-app
)
Storybook for Nuxt 2
Added to gitignore:
.nuxt-storybook
storybook-static
Command yarn nuxt storybook
was run, which generated the .nuxt-storybook folder.
Command yarn nuxt storybook eject
was run, which generated the ".storybook" folder
main.js in ".storybook" was edited:
stories: [
"../stories/**/*.stories.mdx",
"../stories/**/*.stories.@(js|jsx|ts|tsx)"
],
^ pointing to a location for the stories (in this case a "stories" folder was created (can be changed))