kana-bbs/nuxt.config.js
2022-01-30 18:17:15 +08:00

22 lines
480 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
}
}]
],
css: ['@fortawesome/fontawesome-free/css/all.css']
}