mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-07 23:44:33 +00:00
12 lines
273 B
JavaScript
12 lines
273 B
JavaScript
// Note: You must restart bin/webpack-dev-server for changes to take effect
|
|
|
|
const merge = require('webpack-merge');
|
|
const sharedConfig = require('./shared.js');
|
|
|
|
module.exports = merge(sharedConfig, {
|
|
mode: 'development',
|
|
optimization: {
|
|
minimize: false,
|
|
},
|
|
});
|