kana-bbs/nuxt.config.js
2022-01-30 13:34:10 +08:00

21 lines
426 B
JavaScript

export default {
components: true,
modules: ['@nuxtjs/axios', '@nuxtjs/proxy'],
axios: { proxy: true, proxyHeaders: true },
proxy: [
['/api', {
target: 'http://localhost:2333',
pathRewrite: {
'^/api': '/',
changeOrigin: true
}
}],
['/data', {
target: 'http://localhost:2333',
pathRewrite: {
'^/api': '/',
changeOrigin: true
}
}]
]
}