ketr.photos/webpack.dev.js
James Ketrenos ae4022f657 Added react for photos face and identity editor
Signed-off-by: James Ketrenos <james_gitlab@ketrenos.com>
2020-02-04 20:45:51 -08:00

19 lines
471 B
JavaScript

const path = require("path");
const merge = require('webpack-merge')
const common = require('./webpack.common.js');
const webpack = require('webpack');
module.exports = merge(common, {
mode: "development",
devServer: {
contentBase: path.join(__dirname, "/"),
port: 8765,
publicPath: "http://localhost:8765/dist/",
hotOnly: true,
disableHostCheck: true,
historyApiFallback: true
},
plugins: [new webpack.HotModuleReplacementPlugin()]
});