This commit is contained in:
2026-04-22 23:35:59 +01:00
parent df6c33bc3a
commit bee7869af4
116 changed files with 13552 additions and 0 deletions

19
web/svelte.config.js Normal file
View File

@@ -0,0 +1,19 @@
import adapter from "@sveltejs/adapter-static";
import { relative, sep } from "node:path";
/** @type {import('@sveltejs/kit').Config} */
const config = {
compilerOptions: {
// defaults to rune mode for the project, execept for `node_modules`. Can be removed in svelte 6.
runes: ({ filename }) => {
const relativePath = relative(import.meta.dirname, filename);
const pathSegments = relativePath.toLowerCase().split(sep);
const isExternalLibrary = pathSegments.includes("node_modules");
return isExternalLibrary ? undefined : true;
}
},
kit: { adapter: adapter() }
};
export default config;