Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
webpack.config.test.js 485 Bytes
Copy Edit Raw Blame History
Alexandr Subbotin authored 2017-05-23 15:18 . Fix tests
const webpack = require('webpack')
const config = require('./webpack.config.base')
config.devtool = 'cheap-module-eval-source-map',
config.target = 'electron-renderer'
config.plugins = [
...config.plugins,
new webpack.LoaderOptionsPlugin({
debug: true
})
]
config.module = Object.assign(config.module, {
rules: Array.prototype.concat.call(config.module.rules, [
{
test: /\.(css|svg|jpe?g|png)$/,
use: 'null-loader'
}
])
})
module.exports = config
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化