mirror of
https://github.com/gurnec/removeddit.git
synced 2026-03-11 08:54:27 +00:00
8 lines
149 B
JavaScript
8 lines
149 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = {
|
|
devServer: {
|
|
contentBase: path.resolve(__dirname, 'dist'),
|
|
historyApiFallback: true
|
|
}
|
|
}
|