0.15.4 build how to specify app directory
-
After I build my nearly unchanged starter kit I find the files under dist/spa-mat. But if I add them to my server in a subdirectory I get some 404 errors caused by the setting
<base href=/ >
within the index.html which makes all links absolute. How to prevent this or where to set the application root correctly?Looks like this comes from
<base href="<%= htmlWebpackPlugin.options.appBase %>">
within the index.template.html file. But where to set this appBase? -
Found it at http://quasar-framework.org/guide/app-quasar.conf.js.html#Build-Property
I have to use
publicPath
.