14 lines
250 B
JavaScript
14 lines
250 B
JavaScript
// vite.config.js
|
|
const { resolve } = require('path');
|
|
const { defineConfig } = require('vite');
|
|
|
|
module.exports = defineConfig({
|
|
build: {
|
|
rollupOptions: {
|
|
input: {
|
|
main: resolve(__dirname, 'index.html'),
|
|
},
|
|
},
|
|
},
|
|
});
|