Derek

Results 1 comments of Derek

webpack 在使用extract-text-webpack-plugin 抽取出css时, css 中的 相对路径会被改变 例: 在app.vue 中 style 有 .shop {background: url('../images/experience/page1_background.jpg') center center no-repeat;} 在经过 new ExtractTextPlugin('./css/styles.[contenthash].css') 生成后文件目录: indx.html js/ css/style.[contenthash].css .shop {background: url(./images/page1_background.jpg) center center no-repeat;}