mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
# Checklist for submitter If some of the following don't apply, delete the relevant line. - [x] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [x] Added/updated tests - [x] Manual QA for all new/changed functionality
7 lines
177 B
JavaScript
7 lines
177 B
JavaScript
import { merge } from "webpack-merge";
|
|
import * as common from "./webpack.common.js";
|
|
|
|
export default merge(common, {
|
|
mode: "development",
|
|
devtool: "inline-source-map",
|
|
});
|