* Make deployment doable on EUS and Vercel servers * Revert to adapter-auto for now * Remove `r/` layout file * Fixing deployment configuration and landing page for redirects * Clean up PR
19 lines
362 B
JavaScript
19 lines
362 B
JavaScript
import adapter from '@sveltejs/adapter-auto';
|
|
|
|
/** @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: [],
|
|
extensions: ['.svelte']
|
|
};
|
|
|
|
export default config;
|