Files
speckle-server/packages/frontend/vue.config.js
T
Matteo Cominetti aaef5084df fix: #237
2021-05-19 09:29:17 +01:00

22 lines
417 B
JavaScript

module.exports = {
productionSourceMap: false,
pages: {
app: {
entry: 'src/app.js',
title: 'Speckle',
template: 'public/app.html',
filename: 'app.html'
}
},
devServer: {
host: 'localhost',
historyApiFallback: {
rewrites: [
{ from: /^\/$/, to: '/app.html' },
{ from: /./, to: '/app.html' }
]
}
},
transpileDependencies: ['vuetify']
}