34 lines
766 B
JavaScript
34 lines
766 B
JavaScript
module.exports = {
|
|
pages: {
|
|
setup: {
|
|
entry: 'src/main-serversetup.js',
|
|
title: 'Speckle Server Preflight Setup',
|
|
template: 'public/setup.html',
|
|
filename: 'setup.html'
|
|
},
|
|
app: {
|
|
entry: 'src/main-frontend.js',
|
|
title: 'Speckle!',
|
|
template: 'public/app.html',
|
|
filename: 'app.html'
|
|
},
|
|
auth: {
|
|
entry: 'src/main-auth.js',
|
|
title: 'Speckle Authentication',
|
|
template: 'public/auth.html',
|
|
filename: 'auth.html'
|
|
}
|
|
},
|
|
devServer: {
|
|
historyApiFallback: {
|
|
rewrites: [
|
|
{ from: /^\/$/, to: '/app.html' },
|
|
{ from: /\/auth/, to: '/auth.html' },
|
|
{ from: /\/setup/, to: '/setup.html' }
|
|
]
|
|
}
|
|
},
|
|
"transpileDependencies": [
|
|
"vuetify"
|
|
]
|
|
} |