mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
b050861332
* fix: respect publicPath for static assets * test: add test for correct `publicPath` URL handling
31 lines
470 B
JavaScript
31 lines
470 B
JavaScript
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 })
|
|
}
|
|
}
|
|
}
|
|
}
|