lbry-desktop/ui/webpack.prod.js
2017-11-07 19:54:22 -08:00

12 lines
256 B
JavaScript

const webpack = require("webpack")
const merge = require('webpack-merge');
const common = require('./webpack.common.js');
module.exports = merge(common, {
plugins: [
new webpack.DefinePlugin({
ENV: JSON.stringify("production")
})
]
});