mirror of https://github.com/logos-co/open-law.git
7 lines
149 B
JavaScript
7 lines
149 B
JavaScript
|
const {merge} = require('webpack-merge');
|
||
|
const common = require('./webpack.config.js');
|
||
|
|
||
|
module.exports = merge(common, {
|
||
|
mode: 'production',
|
||
|
});
|