Files
ECSESS/svelte.config.js
Antoine Phan 37666f9d0a Quality of life update & package migrations. Use Vercel as default adapter (#67)
* Update all packages
* Manual migration to SkeletonUI v4.8.0. Event elements has breaking tabs underline highlight
* Remove unused dependencies & Let Prettier clean everything
* Minor misc styling update
2025-12-19 22:21:00 -05:00

22 lines
377 B
JavaScript

import adapter from '@sveltejs/adapter-vercel';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter(),
alias: {
// So you can import with `from 'components/...'`
components: 'src/components/',
assets: 'src/assets',
utils: 'src/utils'
}
},
preprocess: [],
compilerOptions: {
runes: true
}
};
export default config;