-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathvue.config.js
31 lines (30 loc) · 1.01 KB
/
vue.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
const path = require('path')
module.exports = {
transpileDependencies: ['vuetify'],
css: {
loaderOptions: {
sass: {
implementation: require('sass'),
fiber: require('fibers'),
},
},
},
configureWebpack: {
resolve: {
alias: {
'@assets': path.resolve(__dirname, 'src/assets'),
'@components': path.resolve(__dirname, 'src/components'),
'@constants': path.resolve(__dirname, 'src/constants'),
'@demo': path.resolve(__dirname, 'demo'),
'@e2e': path.resolve(__dirname, 'tests/e2e'),
'@handlers': path.resolve(__dirname, 'src/handlers'),
'@plugins': path.resolve(__dirname, 'src/plugins'),
'@router': path.resolve(__dirname, 'src/router'),
'@store': path.resolve(__dirname, 'src/store'),
'@templates': path.resolve(__dirname, 'src/templates/src'),
'@va-auth': path.resolve(__dirname, 'src/va-auth/src'),
'@validators': path.resolve(__dirname, 'src/validators/src'),
},
},
},
}