diff options
Diffstat (limited to 'svelte.config.js')
| -rw-r--r-- | svelte.config.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/svelte.config.js b/svelte.config.js index 87559d46..4c173d7d 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -4,7 +4,12 @@ import { vitePreprocess } from '@sveltejs/kit/vite'; /** @type {import('@sveltejs/kit').Config} */ const config = { preprocess: vitePreprocess(), - kit: { adapter: adapter() } + kit: { + adapter: adapter(), + alias: { + $stores: './src/stores' + } + } }; export default config; |