Remove unused webpack alias config

Signed-off-by: Georg Ehrke <developer@georgehrke.com>
This commit is contained in:
Georg Ehrke 2020-08-22 10:49:21 +02:00
parent 05b5ff47e1
commit 09581f68fb
No known key found for this signature in database
GPG Key ID: 9D98FD9380A1CB43
1 changed files with 2 additions and 9 deletions

View File

@ -59,14 +59,7 @@ module.exports = {
})
],
resolve: {
alias: {
Components: path.resolve(__dirname, 'src/components/'),
Mixins: path.resolve(__dirname, 'src/mixins/'),
Models: path.resolve(__dirname, 'src/models/'),
Services: path.resolve(__dirname, 'src/services/'),
Store: path.resolve(__dirname, 'src/store/'),
Views: path.resolve(__dirname, 'src/views/')
},
extensions: ['*', '.js', '.vue', '.json']
extensions: ['*', '.js', '.vue', '.json'],
symlinks: false,
}
}