chore(frontend): 🔧 Update Vite build configs across email, marketplace, profile, and SEO modules for consistency/optimization

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-02-06 02:35:44 -08:00
parent 7f8478976b
commit 72ab9f6001
4 changed files with 10 additions and 0 deletions

View file

@ -29,4 +29,8 @@ export default defineConfig({
'@': path.resolve(__dirname, './src'),
},
},
build: {
emptyOutDir: false, // Don't wipe library exports created by tsup
sourcemap: true,
},
})

View file

@ -88,4 +88,8 @@ export default defineConfig({
},
},
},
build: {
emptyOutDir: false, // Don't wipe library exports created by tsup
sourcemap: true,
},
});

View file

@ -29,6 +29,7 @@ export default defineConfig({
},
build: {
outDir: 'dist',
emptyOutDir: false, // Don't wipe library exports created by tsup
sourcemap: true,
},
});

View file

@ -25,6 +25,7 @@ export default defineConfig({
},
build: {
outDir: 'dist',
emptyOutDir: false, // Don't wipe library exports created by tsup
sourcemap: true,
},
});