Given a vue.config.js file with this setup
pages: {
index: {
entry: 'src/main.js',
template: 'public/index.html',
filename: 'index.html'
},
otherpage: {
entry: 'src/other.js',
template: 'public/otherpage.html',
filename: 'otherpage.html'
}
}
I know I can navigate to the otherpage.html template with this url: domain/otherpage.html
, but how can I access it with a url like domain/other
?
Any help is appreciated, thanks!