Last active
March 8, 2018 11:18
-
-
Save fakiolinho/2deabeadc86c8dd0d3f9e935cfe4e5ed to your computer and use it in GitHub Desktop.
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 { join } = require('path'); | |
const merge = require('webpack-merge'); | |
module.exports = merge(require('./webpack.base.config'), { | |
devtool: 'cheap-module-source-map', | |
module: { | |
rules: [ | |
... | |
], | |
}, | |
plugins: [ | |
... | |
], | |
devServer: { | |
host: '0.0.0.0', | |
port: 3001, | |
contentBase: join(__dirname, '../build'), | |
historyApiFallback: false, | |
hot: true, | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment