No module factory available for dependency type: CssDependency

错误信息:

No module factory available for dependency type: CssDependency_第1张图片

解决方法:

在 vue.config.js 里配置:

module.exports = {
    css: {
        extract: false
    }
};

 

你可能感兴趣的:(Vue.js学习)