mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 09:16:22 +02:00
6 lines
151 B
JavaScript
6 lines
151 B
JavaScript
|
|
const { merge } = require('webpack-merge');
|
||
|
|
const common = require('./webpack.common.js');
|
||
|
|
|
||
|
|
module.exports = merge(common, {
|
||
|
|
mode: 'production'
|
||
|
|
});
|