This repository has been archived on 2022-09-16. You can view files and clone it, but cannot push or open issues or pull requests.
tlaternet-templates/webpack.prod.js
2018-04-07 20:05:29 +00:00

8 lines
175 B
JavaScript

const merge = require("webpack-merge");
const common = require("./webpack.common.js");
module.exports = merge(common, {
devtool: "source-map",
mode: "production"
});