2022-01-30 13:34:10 +08:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}]
|
2022-01-30 18:17:15 +08:00
|
|
|
],
|
|
|
|
css: ['@fortawesome/fontawesome-free/css/all.css']
|
2022-01-30 13:34:10 +08:00
|
|
|
}
|