wireadmin/web/svelte.config.js

22 lines
726 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} */
const config = {
2023-12-19 05:00:54 +00:00
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: [sveltePreprocess()],
2023-11-02 11:04:25 +00:00
2023-12-19 05:00:54 +00: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.
adapter: adapter(),
alias: {
$lib: './src/lib',
},
},
2023-11-02 11:04:25 +00:00
};
export default config;