14 lines
204 B
JavaScript
14 lines
204 B
JavaScript
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
build: {
|
|
rollupOptions: {
|
|
output: {
|
|
manualChunks: {
|
|
three: ["three"],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|