mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-13 02:14:23 +01:00
7 lines
182 B
JavaScript
7 lines
182 B
JavaScript
|
const merge = require('webpack-merge');
|
||
|
const common = require('./webpack.common.js');
|
||
|
|
||
|
module.exports = merge(common, {
|
||
|
devtool: 'inline-source-map',
|
||
|
mode: 'development'
|
||
|
});
|