1
0
Fork 0
moritzruth.de/aliases.webpack.config.js
2019-02-20 19:16:47 +01:00

12 lines
240 B
JavaScript

const path = require('path');
module.exports = {
resolve: {
extensions: ['.js', '.json', '.vue'],
root: path.resolve(__dirname),
alias: {
'@': path.resolve(__dirname),
'~': path.resolve(__dirname),
},
},
};