mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
|
module.exports = {
|
||
|
modules: [
|
||
|
'@nuxtjs/axios',
|
||
|
'@nuxtjs/proxy'
|
||
|
],
|
||
|
proxy: [
|
||
|
['/api/dog', { target: 'https://dog.ceo/', pathRewrite: { '^/api/dog': '/api/breeds/image/random' } }]
|
||
|
]
|
||
|
}
|