adds route edit menu

This commit is contained in:
Christian Beutel
2025-07-19 19:40:11 +02:00
parent 6a908a3ace
commit ef1571c54e
23 changed files with 791 additions and 386 deletions

View File

@@ -9,12 +9,12 @@ export default defineConfig({
ssr: { noExternal: ['three'] },
...(process.env.WANDERER_ENV == "dev" ? {
server: {
https: {
key: fs.readFileSync('.svelte-kit/key.pem'),
cert: fs.readFileSync('.svelte-kit/cert.pem')
},
host: true, // true
port: 443 // 443
// https: {
// key: fs.readFileSync('.svelte-kit/key.pem'),
// cert: fs.readFileSync('.svelte-kit/cert.pem')
// },
// host: true, // true
// port: 443 // 443
}
} : {})
});