From 003772c9943be11e4bba912a40260306f2ec9c0b Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Thu, 11 Jul 2024 20:07:05 +0200 Subject: [PATCH] chore: mark a few more imports as external to fix build warnings (#695) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### ๐Ÿ”— Linked issue ### โ“ Type of change - [ ] ๐Ÿ“– Documentation (updates to the documentation or readme) - [ ] ๐Ÿž Bug fix (a non-breaking change that fixes an issue) - [ ] ๐Ÿ‘Œ Enhancement (improving an existing functionality) - [ ] โœจ New feature (a non-breaking change that adds functionality) - [ ] ๐Ÿงน Chore (updates to the build process or auxiliary tools and libraries) - [ ] โš ๏ธ Breaking change (fix or feature that would cause existing functionality to change) ### ๐Ÿ“š Description Maybe fixes the errors reported at https://github.com/nuxt-modules/storybook/issues/670#issuecomment-2222388747. --- packages/storybook-addon/build.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/storybook-addon/build.config.ts b/packages/storybook-addon/build.config.ts index c51a66b2..0074162c 100644 --- a/packages/storybook-addon/build.config.ts +++ b/packages/storybook-addon/build.config.ts @@ -35,6 +35,7 @@ export default defineBuildConfig({ '#app/composables/state', '#app/entry', '#build/plugins', + '#build/css', + 'virtual:nuxt-runtime-config', ], - failOnWarn: false, })