monofile/vite.config.ts

23 lines
691 B
TypeScript
Raw Permalink Normal View History

import { defineConfig } from "vite"
import { svelte } from "@sveltejs/vite-plugin-svelte"
import autoPreprocess from "svelte-preprocess"
import { resolve } from "path"
export default defineConfig({
root: "./src",
build: {
outDir: "../dist",
assetsDir: "static/vite",
rollupOptions: {
input: {
main: resolve(__dirname, "src/index.html"),
download: resolve(__dirname, "src/download.html"),
error: resolve(__dirname, "src/error.html"),
2024-06-25 16:51:23 -07:00
reset: resolve(__dirname, "src/reset.html"),
},
},
},
plugins: [svelte({
preprocess: autoPreprocess()
})],
})