MapComplete/vite.config.js

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

42 lines
893 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"
import basicSsl from '@vitejs/plugin-basic-ssl'
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
}
console.log("Args:",process.argv)
const plugins = [svelte() ]
if(process.argv.indexOf("--https") >= 0){
console.log("Adding basicSSL")
plugins.push(basicSsl())
}
2023-01-17 18:31:51 +01:00
export default defineConfig({
2023-01-17 03:37:26 +01:00
build: {
rollupOptions: {
input,
2025-01-22 01:26:12 +01:00
external:[
"android"
]
2023-01-17 03:37:26 +01:00
},
},
2023-01-17 18:49:15 +01:00
base: `${ASSET_URL}`,
plugins ,
server: {
port: 1234,
2025-01-22 01:26:12 +01:00
watch:{
ignored: [
"**/android/**",
'**/.git/**',
'**/dist/**'
]
}
},
2023-01-17 03:37:26 +01:00
})