We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🐛 The bug Composition API does not register then Nuxt Webpack builder is disable. Nuxt Storybook
🛠️ To reproduce
git clone https://github.com/norioxkimura/nuxt-storybook-bug-20210529 cd nuxt-storybook-bug-20210529 cd 0.24-ng npm ci npm run storybook
Originally reported in: nuxt-modules/storybook#276
ℹ️ Additional context In v0.24.0 auto-registering is disabled, Instead module adds an entry to Webpack app using build:compile hook. Is there any specific reason to use build:compile? https://github.com/nuxt-community/composition-api/blob/main/src/module/index.ts#L43-L46
build:compile
This issue could be fix if the modules uses webpack:config hook instead of build:compile.
webpack:config
The text was updated successfully, but these errors were encountered:
fix: use webpack:config to add entry for better nuxt/storybook comp…
ec6f87b
…atibility closes #494
e43cd13
1b07abe
…atibility (#495) closes #494
danielroe
Successfully merging a pull request may close this issue.
🐛 The bug
Composition API does not register then Nuxt Webpack builder is disable.
Nuxt Storybook
🛠️ To reproduce
Originally reported in: nuxt-modules/storybook#276
ℹ️ Additional context
In v0.24.0 auto-registering is disabled, Instead module adds an entry to Webpack app using
build:compile
hook.Is there any specific reason to use
build:compile
? https://github.com/nuxt-community/composition-api/blob/main/src/module/index.ts#L43-L46This issue could be fix if the modules uses
webpack:config
hook instead ofbuild:compile
.The text was updated successfully, but these errors were encountered: