vue-cli3运行项目时报"Inline JavaScript is not enabled. Is it set in your options?"错误

在vue.config.js加入以下配置

module.exports = {
    css: {
        loaderOptions: {
            less: {
                javascriptEnabled: true
            }
        }
    }
}

 

posted @ 2021-04-01 20:59  李国将  阅读(1519)  评论(0)    收藏  举报