From 88981e9d5bfd34390f4ef2f3e8664b5028c34827 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Acid=20Chicken=20=28=E7=A1=AB=E9=85=B8=E9=B6=8F=29?= Date: Sat, 1 Apr 2023 18:22:15 +0900 Subject: [PATCH] build(#10336): staticified directory structure --- packages/frontend/.storybook/main.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/frontend/.storybook/main.ts b/packages/frontend/.storybook/main.ts index 4b5f7260e2..82e2473e9f 100644 --- a/packages/frontend/.storybook/main.ts +++ b/packages/frontend/.storybook/main.ts @@ -27,9 +27,13 @@ const config = { viteStaticCopy({ targets: [ { - src: resolve(__dirname, '../node_modules/@tabler/icons-webfont/**/*.{css,eot,ttf,woff,woff2}'), + src: resolve(__dirname, '../node_modules/@tabler/icons-webfont/*.css'), dest: 'node_modules/@tabler/icons-webfont', }, + { + src: resolve(__dirname, '../node_modules/@tabler/icons-webfont/fonts/*.{eot,ttf,woff,woff2}'), + dest: 'node_modules/@tabler/icons-webfont/fonts', + }, ], }), ],