fix: assets should use relative paths for itch.io

This commit is contained in:
pskfyi 2022-01-12 18:46:39 -08:00 committed by pskfyi
commit 5d10ac918e

View file

@ -73,7 +73,12 @@ export default {
}, },
// Build Configuration: https://go.nuxtjs.dev/config-build // Build Configuration: https://go.nuxtjs.dev/config-build
build: {}, build: {
publicPath: './_nuxt/',
extend(config) {
config.output.publicPath = './_nuxt/'
},
},
router: { router: {
mode: 'hash', mode: 'hash',