split the project in 2

This commit is contained in:
Heidi
2026-05-29 18:55:56 +01:00
parent 8aadda2d72
commit aef2113198
523 changed files with 2929 additions and 10 deletions
+6
View File
@@ -410,7 +410,13 @@ export default defineConfig(({ mode }) => {
const comingSoon = String(env.comingsoon || env.COMINGSOON || '').toLowerCase() === 'true'
return {
root: path.resolve(__dirname, 'frontend'),
publicDir: path.resolve(__dirname, 'frontend/public'),
plugins: [comingSoonDev(comingSoon), apiGuard(env), react(), tailwindcss(), obfuscate(), sri()],
build: {
outDir: path.resolve(__dirname, 'dist'),
emptyOutDir: true,
},
server: {
host: '0.0.0.0',
port: 3001,