From 44f3012e31e8fc7a055f27651ce906967b580788 Mon Sep 17 00:00:00 2001 From: Sped0n Date: Thu, 2 Nov 2023 10:51:49 +0800 Subject: [PATCH] chore(rollup.config.mjs): update output directory from './static/js' to './static/bundled/js' to match new project structure --- rollup.config.mjs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rollup.config.mjs b/rollup.config.mjs index ec5f111..bbb0705 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -4,9 +4,8 @@ import typescript from '@rollup/plugin-typescript' export default { input: './assets/ts/main.ts', - sourceMap: 'inline', output: { - dir: './static/js', + dir: './static/bundled/js', format: 'es', chunkFileNames: '[hash:6].js', compact: true