Skip to content

Commit

Permalink
V12
Browse files Browse the repository at this point in the history
  • Loading branch information
yomero243 committed Nov 7, 2024
1 parent 508ad74 commit 20780f2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'

// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
build: {
chunkSizeWarningLimit: 1000,
rollupOptions: {
output: {
manualChunks: {
'three': ['three'],
'three-stdlib': ['three-stdlib'],
}
}
}
}
})

0 comments on commit 20780f2

Please sign in to comment.