removeddit/webpack.config.js
2018-05-20 10:59:57 +02:00

8 lines
149 B
JavaScript

const path = require('path')
module.exports = {
devServer: {
contentBase: path.resolve(__dirname, 'dist'),
historyApiFallback: true
}
}