Last active
July 20, 2018 19:58
-
-
Save nairihar/eedea1f4e8585b148935627d87ec8406 to your computer and use it in GitHub Desktop.
Setup React App - Organizing React Application Part 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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