balls gaming

This commit is contained in:
amy 2024-07-08 04:28:25 +03:30
parent 0202e1a23a
commit 4dc39a7af5
5 changed files with 25 additions and 1 deletions

View file

@ -1,6 +1,15 @@
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')
}
}
},
plugins: [solid()],
})