mapcomplete/vite.config.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
537 B
JavaScript
Raw Normal View History

2023-01-17 18:31:51 +01:00
import { defineConfig } from "vite"
import { svelte } from "@sveltejs/vite-plugin-svelte"
2023-01-17 03:37:26 +01:00
import fs from "fs"
2023-01-17 18:31:51 +01:00
2023-01-17 03:37:26 +01:00
const allHtmlFiles = fs.readdirSync(".").filter((f) => f.endsWith(".html"))
const input = {}
2023-01-17 18:49:15 +01:00
const ASSET_URL = process.env.ASSET_URL || ""
2023-01-17 03:37:26 +01:00
for (const html of allHtmlFiles) {
const name = html.substring(0, html.length - 5)
input[name] = "./" + html
}
2023-01-17 18:31:51 +01:00
export default defineConfig({
2023-01-17 03:37:26 +01:00
build: {
rollupOptions: {
input,
},
},
2023-01-17 18:49:15 +01:00
base: `${ASSET_URL}`,
plugins: [svelte()],
server: {
port: 1234,
},
2023-01-17 03:37:26 +01:00
})