23 lines
519 B
JavaScript
23 lines
519 B
JavaScript
export default {
|
|
ssr: false,
|
|
srcDir: 'src/',
|
|
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,
|
|
modules: ['@nuxtjs/axios'],
|
|
plugins: [{ src: '~/plugins/engine.js', mode: 'client' }],
|
|
axios: { proxy: true },
|
|
proxy: {
|
|
'/api/': 'http://localhost:32039',
|
|
},
|
|
}
|