[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/hackmcgill/hackmcgill/develop/webpack.dev.js [Back]  [Original]

const merge = require('webpack-merge');
const common = require('./webpack.common.js');
const path = require('path');

module.exports = merge(common, {
  devServer: {
    contentBase: path.join(__dirname, 'dist'),
    watchContentBase: true,
    port: 9000,
  },
});

Web Proxy Viewer  |  New URL  |  Original Page