Skip to content

Instantly share code, notes, and snippets.

@nairihar
Last active July 20, 2018 19:58
Show Gist options
  • Save nairihar/eedea1f4e8585b148935627d87ec8406 to your computer and use it in GitHub Desktop.
Save nairihar/eedea1f4e8585b148935627d87ec8406 to your computer and use it in GitHub Desktop.
Setup React App - Organizing React Application Part 1
const merge = require('webpack-merge');
const common = require('./webpack.common.js');
module.exports = merge(common, {
mode: 'development',
devServer: {
contentBase: './dist'
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment