feat: migrate to $ alias

This commit is contained in:
Alexander Daichendt 2022-07-26 22:50:37 +02:00
parent d7a0a24a8f
commit aa1cae3540
5 changed files with 15 additions and 14 deletions

View file

@ -13,15 +13,16 @@ const config = {
// for more information about preprocessors
preprocess: [
preprocess({ postcss: { plugins: [autoprefixer, cssNormalizer()] } }),
mdsvex(mdsvexconfig)
mdsvex(mdsvexconfig),
],
kit: {
adapter: adapter()
adapter: adapter(),
alias: { $components: 'src/components' },
},
prerender: {
default: true
}
default: true,
},
};
export default config;