We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f62c63 commit ac42b1cCopy full SHA for ac42b1c
.storybook/main.ts
@@ -21,6 +21,15 @@ const config: StorybookConfig = {
21
name: "@storybook/vue3-vite",
22
options: {},
23
},
24
+ viteFinal: (config, options) => {
25
+ config.plugins = config.plugins?.filter(async (plugin) => {
26
+ plugin = await plugin;
27
+
28
+ return typeof plugin === 'boolean' || Array.isArray(plugin) || plugin?.name !== 'vite-plugin-static-copy:build';
29
+ });
30
31
+ return config;
32
+ },
33
};
34
35
export default config;
0 commit comments