mirror of
https://github.com/vitejs/vite.git
synced 2024-11-22 07:09:05 +00:00
14 lines
250 B
JavaScript
14 lines
250 B
JavaScript
const { resolve } = require('node:path')
|
|
|
|
module.exports = {
|
|
build: {
|
|
manifest: true,
|
|
rollupOptions: {
|
|
input: {
|
|
main: resolve(__dirname, './index.html'),
|
|
other: resolve(__dirname, './other.js'),
|
|
},
|
|
},
|
|
},
|
|
}
|