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

31 lines
470 B
JavaScript
Raw Normal View History

export default {
target: 'static',
export: {
payload: {
config: true
}
},
router: {
// base: '/test',
},
build: {
publicPath: 'https://cdn.nuxtjs.org/test/_nuxt/'
},
foo: {
shell: process.env.SHELL
},
env: {
x: 123
},
hooks: {
export: {
before ({ setPayload }) {
setPayload({ shared: true })
},
route ({ route, setPayload }) {
setPayload({ myRoute: route })
}
}
}
}