Quasar app in sub directory
-
Hello lets say i have my domain like so.
https://www.test.com/aa/{here routing app lives}
I read that I should change ```
baseUrl:’/aa/’Is that should be in quasar.conf.js like
module.exports = function (/* ctx */) {
return {
baseUrl: “/aa/”, -
@felek I believe what you want is this (in quasar.conf.js):
build: { publicPath: 'aa' }
-
@Hawkeye64 I think so to. Thank You.