MapComplete/app/app.vite.config.js

32 lines
648 B
JavaScript
Raw Normal View History

2024-12-31 16:31:01 +01:00
import { defineConfig } from "vite"
import { svelte } from "@sveltejs/vite-plugin-svelte"
import basicSsl from "@vitejs/plugin-basic-ssl"
2025-01-12 01:53:58 +01:00
const input = {
land: "./app/land.html",
index: "./app/index.html",
passthrough: "./app/passthrough.html"
}
2024-12-31 16:31:01 +01:00
console.log("Args:", process.argv)
const plugins = [svelte()]
if (process.argv.indexOf("--https") >= 0) {
console.log("Adding basicSSL")
plugins.push(basicSsl())
}
const ASSET_URL = process.env.ASSET_URL || ""
export default defineConfig({
build: {
rollupOptions: {
input,
},
outDir: "./app/dist/",
},
base: `./app/`,
plugins,
server: {
port: 1234,
},
})