1
0
Fork 0

first commit
Some checks failed
Build / Build (push) Successful in 46s
Build / Deploy (push) Failing after 10s

This commit is contained in:
amy 2024-12-24 16:32:54 +03:30
commit b5a4c0a601
No known key found for this signature in database
42 changed files with 2802 additions and 0 deletions

16
vite.config.ts Normal file
View 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()],
})