diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-03-14 23:11:04 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-03-14 23:11:04 +0100 |
| commit | a5969b7fc8bfc451da2969f06898c25eca35a4b2 (patch) | |
| tree | 1f35dfcb81e0242ab871f84a849ad852b333fba5 | |
| parent | 74b03c33ff37d7363721bc2c33abb867dc9ea87c (diff) | |
Use only src for aliases
| -rw-r--r-- | vite.config.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/vite.config.js b/vite.config.js index f739881..6c17dac 100644 --- a/vite.config.js +++ b/vite.config.js @@ -13,10 +13,7 @@ export default { ], resolve: { alias: { - $components: resolve('src/components'), - $config: resolve('src/config'), - $data: resolve('src/data'), - $stores: resolve('src/stores') + $: resolve('src') } } }; |