From 7dac9a24541612c0b95ce50ec37e65a43465657c Mon Sep 17 00:00:00 2001 From: JellyBrick Date: Sat, 7 Oct 2023 12:29:46 +0900 Subject: [PATCH] fix: need copying error.html to dist directory --- rollup.main.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/rollup.main.config.ts b/rollup.main.config.ts index 8fc9d9b8..767c89a1 100644 --- a/rollup.main.config.ts +++ b/rollup.main.config.ts @@ -34,6 +34,7 @@ export default defineConfig({ css(), copy({ targets: [ + { src: 'error.html', dest: 'dist/' }, { src: 'assets', dest: 'dist/' }, ], }),