mirror of
https://github.com/liriliri/eruda.git
synced 2026-02-06 10:07:48 +08:00
13 lines
284 B
JavaScript
13 lines
284 B
JavaScript
var webpack = require('webpack');
|
|
|
|
exports = require('./webpack.base');
|
|
|
|
exports.output.filename = 'eruda.js';
|
|
exports.devtool = 'source-map';
|
|
exports.plugins = exports.plugins.concat([
|
|
new webpack.DefinePlugin({
|
|
ENV: '"development"',
|
|
})
|
|
]);
|
|
|
|
module.exports = exports; |