mastodon/config/webpack/tests.js

10 lines
230 B
JavaScript
Raw Normal View History

// Note: You must restart bin/webpack-dev-server for changes to take effect
const { merge } = require('webpack-merge');
const sharedConfig = require('./shared');
module.exports = merge(sharedConfig, {
2023-07-28 21:09:49 +00:00
mode: 'production',
});