1
0
Fork 0

no hacked
Some checks failed
Build / Build (push) Successful in 43s
Build / Deploy (push) Failing after 8s

This commit is contained in:
amy 2024-12-24 16:45:12 +03:30
parent b5a4c0a601
commit 2db37cc83e
No known key found for this signature in database
5 changed files with 8 additions and 76 deletions

View file

@ -1,16 +1,15 @@
import { defineConfig } from 'vite'
import { resolve } from 'path'
import solid from 'vite-plugin-solid'
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')
}
}
main: resolve(__dirname, "index.html"),
review: resolve(__dirname, "review/index.html"),
},
},
},
plugins: [solid()],
})
});