knowyt/client/nuxt.config.js

23 lines
519 B
JavaScript
Raw Normal View History

2021-07-30 14:54:40 +00:00
export default {
ssr: false,
2021-07-30 18:18:04 +00:00
srcDir: 'src/',
2021-07-30 14:54:40 +00:00
target: 'static',
head: {
title: 'Know Your Teammates',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
]
},
components: true,
2021-07-30 18:18:04 +00:00
modules: ['@nuxtjs/axios'],
2021-07-30 19:03:43 +00:00
plugins: [{ src: '~/plugins/engine.js', mode: 'client' }],
2021-07-30 18:18:04 +00:00
axios: { proxy: true },
proxy: {
'/api/': 'http://localhost:32039',
},
2021-07-30 14:54:40 +00:00
}