mirror of https://github.com/ekimekim/wubloader
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
722 B
TypeScript
25 lines
722 B
TypeScript
import { fileURLToPath } from "url";
|
|
import { defineConfig } from "vite";
|
|
import solidPlugin from "vite-plugin-solid";
|
|
import devtools from "solid-devtools/vite";
|
|
|
|
export default defineConfig({
|
|
base: "/thrimbletrimmer/",
|
|
plugins: [devtools(), solidPlugin()],
|
|
server: {
|
|
port: 3000,
|
|
},
|
|
build: {
|
|
target: "esnext",
|
|
// minify: false, // Uncomment this line if you need to debug unminified code
|
|
rollupOptions: {
|
|
input: {
|
|
index: fileURLToPath(new URL("index.html", import.meta.url)),
|
|
edit: fileURLToPath(new URL("edit.html", import.meta.url)),
|
|
utils: fileURLToPath(new URL("utils.html", import.meta.url)),
|
|
thumbnails: fileURLToPath(new URL("thumbnails.html", import.meta.url)),
|
|
},
|
|
},
|
|
},
|
|
});
|