* 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
22 lines
377 B
JavaScript
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;
|