mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-05 06:37:10 -04:00
15 lines
332 B
TypeScript
15 lines
332 B
TypeScript
![]() |
// vite.config.js
|
||
|
import { resolve } from 'path'
|
||
|
import { defineConfig } from 'vite'
|
||
|
|
||
|
export default defineConfig({
|
||
|
build: {
|
||
|
rollupOptions: {
|
||
|
input: {
|
||
|
main: resolve(__dirname, 'index.html'),
|
||
|
nested: resolve(__dirname, 'nested/index.html'),
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
})
|