wireadmin/web/svelte.config.js

15 lines
318 B
JavaScript
Raw Normal View History

2023-11-07 20:12:06 +00:00
import adapter from '@sveltejs/adapter-node';
2023-12-19 05:00:54 +00:00
import sveltePreprocess from 'svelte-preprocess';
2023-11-02 11:04:25 +00:00
/** @type {import('@sveltejs/kit').Config} */
2024-05-29 16:40:18 +00:00
export default {
2023-12-19 05:00:54 +00:00
preprocess: [sveltePreprocess()],
kit: {
adapter: adapter(),
alias: {
2024-05-29 16:40:18 +00:00
'@lib': './src/lib',
2023-12-19 05:00:54 +00:00
},
2024-05-29 16:40:18 +00:00
csrf: { checkOrigin: false },
2023-12-19 05:00:54 +00:00
},
2023-11-02 11:04:25 +00:00
};