Files
game-grid/svelte.config.js
2026-05-17 14:51:37 -04:00

16 lines
449 B
JavaScript

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;