add project

This commit is contained in:
2026-05-17 14:51:37 -04:00
parent 2f1a0d6020
commit fe8dc317b2
40 changed files with 6137 additions and 0 deletions

15
svelte.config.js Normal file
View File

@@ -0,0 +1,15 @@
import adapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapter(),
// Disable origin check — the app is accessed via many possible URLs
// (IP, hostname, localhost) on a local network, so strict origin
// matching would break form submissions for most users.
csrf: { checkOrigin: false }
}
};
export default config;