mirror of
https://github.com/mollersuite/monofile.git
synced 2024-11-21 21:36:26 -08:00
22 lines
630 B
TypeScript
22 lines
630 B
TypeScript
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"),
|
|
},
|
|
},
|
|
},
|
|
plugins: [svelte({
|
|
preprocess: autoPreprocess()
|
|
})],
|
|
})
|