ae5ac35058
- Add Dockerfile with adapter-node for server deployment - Add Kubernetes deployment and ingress manifests - Add GitHub Actions workflow (server build, desktop builds, K8s deploy) - Electron now loads hosted URL (https://optima.osdci.net) in production - Add macOS DMG maker and make:macos script - Switch to static imports in lib/index.ts - Add .dockerignore
20 lines
341 B
JavaScript
20 lines
341 B
JavaScript
import adapter from "@sveltejs/adapter-node";
|
|
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
|
|
|
|
const config = {
|
|
preprocess: vitePreprocess(),
|
|
compilerOptions: {
|
|
experimental: {
|
|
async: true,
|
|
},
|
|
},
|
|
kit: {
|
|
adapter: adapter(),
|
|
router: {
|
|
type: "pathname",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|