1
0
Fork 0
amy.rip/vite.config.ts
amy 2db37cc83e
Some checks failed
Build / Build (push) Successful in 43s
Build / Deploy (push) Failing after 8s
no hacked
2024-12-24 16:45:12 +03:30

15 lines
338 B
TypeScript

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"),
review: resolve(__dirname, "review/index.html"),
},
},
},
plugins: [solid()],
});