From ed03b76aaffcec50e7e246e66f3c44d75013bacf Mon Sep 17 00:00:00 2001 From: Jonathan Chevalier Date: Fri, 23 Sep 2022 17:11:51 +0200 Subject: [PATCH] WIP MMCM --- .gitignore | 1 + vite.config.js | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index a547bf3..e3eea91 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ lerna-debug.log* node_modules dist +out dist-ssr *.local diff --git a/vite.config.js b/vite.config.js index 1513810..c849991 100644 --- a/vite.config.js +++ b/vite.config.js @@ -11,5 +11,9 @@ export default defineConfig({ changeOrigin: true, } } + }, + build : { + outDir : 'out', + assetsDir : 'dist/app-mmcm' } })