svgl/svelte.config.js

16 lines
300 B
JavaScript
Raw Normal View History

2023-03-15 05:08:22 +08:00
import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/kit/vite';
/** @type {import('@sveltejs/kit').Config} */
const config = {
2023-03-15 19:29:15 +08:00
preprocess: vitePreprocess(),
kit: {
2023-03-19 22:53:31 +08:00
adapter: adapter(),
alias: {
'@': './src/*',
}
2023-03-15 19:29:15 +08:00
}
2023-03-15 05:08:22 +08:00
};
export default config;