Files
svelte-mud/svelte.config.js

22 lines
580 B
JavaScript
Raw Permalink Normal View History

2025-04-21 14:12:36 +02:00
import nodeAdapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: nodeAdapter({
// You can customize the Node.js adapter options here:
// out: 'build', // Output directory for the build
// precompress: false, // Whether to precompress assets
// envPrefix: '', // Environment variable prefix
}),
alias: {
$lib: 'src/lib'
}
}
};
export default config;