Nuxt/test/fixtures/full-static/nuxt.config.js

25 lines
380 B
JavaScript

export default {
target: 'static',
export: {
payload: {
config: true
}
},
router: {
// base: '/test',
},
build: {
publicPath: '/test/_nuxt/'
},
hooks: {
export: {
before ({ setPayload }) {
setPayload({ shared: true })
},
route ({ route, setPayload }) {
setPayload({ myRoute: route })
}
}
}
}