mirror of
https://github.com/liriliri/eruda.git
synced 2026-02-02 09:49:00 +08:00
15 lines
299 B
JavaScript
15 lines
299 B
JavaScript
const webpack = require('webpack')
|
|
|
|
exports = require('./webpack.base')
|
|
|
|
exports.mode = 'production'
|
|
exports.output.filename = 'eruda.js'
|
|
exports.devtool = 'source-map'
|
|
exports.plugins = exports.plugins.concat([
|
|
new webpack.DefinePlugin({
|
|
ENV: '"production"'
|
|
})
|
|
])
|
|
|
|
module.exports = exports
|