1
0
Fork 0
mirror of https://github.com/Findus23/RainbowRoad.git synced 2024-09-19 16:03:52 +02:00
RainbowRoad/vite.config.js

18 lines
356 B
JavaScript
Raw Normal View History

2022-08-07 18:38:22 +02:00
import {defineConfig} from "vite";
export default defineConfig({
plugins: [
// splitVendorChunkPlugin(),
// visualizer(),
],
build: {
2022-08-07 21:12:54 +02:00
sourcemap: true,
2022-08-07 18:38:22 +02:00
rollupOptions: {
input: {
"index": 'index.html',
"canvastest": 'canvastest.html',
},
}
}
})