2023-10-19 01:03:40 +02:00
|
|
|
import adapter from '@sveltejs/adapter-node';
|
2023-10-17 18:51:44 +02:00
|
|
|
import { vitePreprocess } from '@sveltejs/kit/vite';
|
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
2023-10-19 01:03:40 +02:00
|
|
|
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
|
|
|
// for more information about preprocessors
|
|
|
|
preprocess: vitePreprocess(),
|
2023-10-17 18:51:44 +02:00
|
|
|
|
2023-10-19 01:03:40 +02:00
|
|
|
kit: {
|
|
|
|
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
|
|
|
|
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
|
|
|
|
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
|
2023-11-29 15:59:16 +01:00
|
|
|
adapter: adapter(),
|
|
|
|
alias: {
|
|
|
|
$paraglide: "./src/paraglide",
|
|
|
|
},
|
|
|
|
},
|
2023-10-17 18:51:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|