Skip to content

Commit

Permalink
build(frontend): hardcode minify: false for vite build until fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Feb 25, 2024
1 parent 28b4944 commit 9bf3782
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/frontend/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ export default defineConfig(({ mode }) => {
},
},
build: {
minify: mode === 'production' ? 'esbuild' : false,
// minify: mode === 'development' ? false : 'esbuild',
minify: false,
},
resolve: {
alias: {
Expand Down

0 comments on commit 9bf3782

Please sign in to comment.