file-uploader/svelte.config.js

14 lines
295 B
JavaScript
Raw Normal View History

2024-03-12 09:44:25 +00:00
import adapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
2024-08-02 14:56:30 +00:00
adapter: adapter(),
csrf: { checkOrigin: false }
2024-03-12 09:44:25 +00:00
},
preprocess: vitePreprocess()
};
2024-03-16 14:27:40 +00:00
2024-03-12 09:44:25 +00:00
export default config;