removeddit/webpack.config.js

9 lines
149 B
JavaScript
Raw Permalink Normal View History

2018-04-14 11:51:08 +00:00
const path = require('path')
module.exports = {
devServer: {
contentBase: path.resolve(__dirname, 'dist'),
2018-04-14 11:51:08 +00:00
historyApiFallback: true
}
}