diff options
Diffstat (limited to 'vite.config.js')
| -rw-r--r-- | vite.config.js | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/vite.config.js b/vite.config.js index e4b56a2..f739881 100644 --- a/vite.config.js +++ b/vite.config.js @@ -1,11 +1,22 @@ // Consult https://vitejs.dev/config/ to learn about these options import { resolve } from 'path'; +import Svelte from '@sveltejs/vite-plugin-svelte'; export default { + optimizeDeps: { + exclude: ['@roxi/routify'] + }, + plugins: [ + Svelte({ + emitCss: true + }) + ], resolve: { alias: { $components: resolve('src/components'), - $config: resolve('src/config') + $config: resolve('src/config'), + $data: resolve('src/data'), + $stores: resolve('src/stores') } } }; |