mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-05 14:47:12 -04:00
Fixed auth flow and added scaffolding vite config.
This commit is contained in:
parent
66fc735253
commit
04e4a5eee0
18 changed files with 226 additions and 37 deletions
14
ui/vite.config.ts
Normal file
14
ui/vite.config.ts
Normal file
|
@ -0,0 +1,14 @@
|
|||
// 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'),
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue