mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-10 01:01:55 +01:00
11 lines
No EOL
220 B
JavaScript
11 lines
No EOL
220 B
JavaScript
const merge = require('webpack-merge');
|
|
const common = require('./webpack.common.js');
|
|
|
|
module.exports = env => {
|
|
let mode = "production";
|
|
env.mode = mode;
|
|
|
|
return merge(common(env), {
|
|
mode
|
|
});
|
|
}; |