13 lines
277 B
JavaScript
13 lines
277 B
JavaScript
var webpack = require('webpack');
|
|
|
|
exports = require('./webpack.base');
|
|
|
|
exports.output.filename = 'eruda.js';
|
|
exports.devtool = false;
|
|
exports.plugins = exports.plugins.concat([
|
|
new webpack.DefinePlugin({
|
|
ENV: '"development"',
|
|
})
|
|
]);
|
|
|
|
module.exports = exports; |