chat-ui/svelte.config.js

30 lines
706 B
JavaScript
Raw Permalink Normal View History

import adapter from "@sveltejs/adapter-node";
import { vitePreprocess } from "@sveltejs/kit/vite";
import dotenv from "dotenv";
2023-04-20 19:50:55 +02:00
dotenv.config({ path: "./.env.local" });
dotenv.config({ path: "./.env" });
2023-02-17 16:39:29 +01:00
process.env.PUBLIC_VERSION = process.env.npm_package_version;
2023-02-17 16:39:29 +01:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: vitePreprocess(),
kit: {
2023-04-20 19:50:55 +02:00
adapter: adapter(),
paths: {
base: process.env.APP_BASE || "",
},
2023-05-04 16:15:44 +02:00
csrf: {
// handled in hooks.server.ts, because we can have multiple valid origins
2023-05-04 17:04:38 +02:00
checkOrigin: false,
2023-05-04 16:15:44 +02:00
},
},
2023-02-17 16:39:29 +01:00
};
export default config;