* feat: search options * feat: sanitize folder names * fix: add cursor: pointer to switch * fix: explicitly make the search bar a text input * refactor: remove magic number * refactor: extract Switch component to its own file * refactor: split AppState into multiple files * refactor: review comments
10 lines
222 B
JavaScript
10 lines
222 B
JavaScript
const { merge } = require('webpack-merge');
|
|
const config = require('./webpack.config.js');
|
|
|
|
module.exports = (env, argv) => {
|
|
return merge(config(env, argv), {
|
|
mode: 'production',
|
|
devtool: 'source-map',
|
|
});
|
|
};
|