monkeytype/frontend/webpack/config.dev.js
Bruce Berrios 032fe57f2a
Consolidate webpack configurations (#2716) bruception
* Consolidate webpack configurations

* Add lint step back into dev compilation
2022-03-16 20:57:30 +01:00

9 lines
250 B
JavaScript

const { merge } = require("webpack-merge");
const BASE_CONFIGURATION = require("./config.base");
const DEVELOPMENT_CONFIGURATION = {
mode: "development",
devtool: false,
};
module.exports = merge(BASE_CONFIGURATION, DEVELOPMENT_CONFIGURATION);