File tree 1 file changed +9
-7
lines changed
1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
- import adapter from '@sveltejs/adapter-auto' ;
2
- import { vitePreprocess } from '@sveltejs/vite-plugin-svelte' ;
1
+ import adapter from '@sveltejs/adapter-auto'
2
+ import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
3
3
4
4
/** @type {import('@sveltejs/kit').Config } */
5
- const config = {
5
+ export default {
6
6
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
7
7
// for more information about preprocessors
8
8
preprocess : vitePreprocess ( ) ,
@@ -11,8 +11,10 @@ const config = {
11
11
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
12
12
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
13
13
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
14
- adapter : adapter ( )
15
- }
16
- } ;
14
+ adapter : adapter ( ) ,
17
15
18
- export default config ;
16
+ alias : {
17
+ '$' : './src' ,
18
+ } ,
19
+ } ,
20
+ }
You can’t perform that action at this time.
0 commit comments