first commit
This commit is contained in:
commit
b5a4c0a601
42 changed files with 2802 additions and 0 deletions
16
vite.config.ts
Normal file
16
vite.config.ts
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import { defineConfig } from 'vite'
|
||||
import { resolve } from 'path'
|
||||
import solid from 'vite-plugin-solid'
|
||||
|
||||
export default defineConfig({
|
||||
build: {
|
||||
rollupOptions: {
|
||||
input: {
|
||||
main: resolve(__dirname, 'index.html'),
|
||||
hacked: resolve(__dirname, 'hacked/index.html'),
|
||||
review: resolve(__dirname, 'review/index.html')
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: [solid()],
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue