i'm triying to create an alias in vue.config.js :
var path = require('path');
module.exports = {
resolve : {
alias : {
'core' : path.resolve(__dirname, '../core')
}
}
}
then i run : yarn serve
and this is the result :
ERROR Invalid options in vue.config.js: "resolve" is not allowed
please help !