From 04b1db6ac7e0a57b1a1b5b4f2ee6a505e62301a6 Mon Sep 17 00:00:00 2001 From: James Reid Date: Tue, 6 Feb 2024 16:08:55 +0000 Subject: [PATCH] int= Fix rollup prod target typo --- admin/config/rollup.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/config/rollup.config.js b/admin/config/rollup.config.js index a6a64e7..7d8ee03 100644 --- a/admin/config/rollup.config.js +++ b/admin/config/rollup.config.js @@ -108,7 +108,7 @@ const configs = [ { input: "./src/package/web.js", output: [ - { file: "./build/package/web.js", format: "es" } + { file: "./dist/package/web.js", format: "es" } ], plugins: [ // @ts-expect-error - Terser is callable, but has no call @@ -122,7 +122,7 @@ const configs = [ { input: "./src/package/shader/worker.js", output: [ - { file: "./build/package/worker.js", format: "es" } + { file: "./dist/package/worker.js", format: "es" } ], plugins: [ // @ts-expect-error - Terser is callable, but has no call