mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 09:59:00 -07:00
19 lines
420 B
JavaScript
19 lines
420 B
JavaScript
import preprocess from 'svelte-preprocess';
|
|
import adapter from '@sveltejs/adapter-node';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://github.com/sveltejs/svelte-preprocess
|
|
// for more information about preprocessors
|
|
preprocess: preprocess(),
|
|
|
|
kit: {
|
|
adapter: adapter({ out: 'build' }),
|
|
methodOverride: {
|
|
allowed: ['PATCH', 'DELETE'],
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|