Files
servicio_social_front/nuxt.config.js
T
2021-06-07 23:42:00 -05:00

37 lines
885 B
JavaScript

export default {
/* Server de pruebas */
// server: { port: 3016 },
server: { port: 8080 },
ssr: false,
target: 'static',
head: {
title: 'IRIS',
htmlAttrs: {
lang: 'es',
},
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: '' },
],
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }],
},
css: [],
plugins: [],
components: true,
buildModules: [],
modules: ['nuxt-buefy', '@nuxtjs/axios'],
axios: {},
build: {},
/* Server de pruebas */
// static: {
// prefix: false,
// },
env: {
// api: "http://localhost:3000",
api: 'https://venus.acatlan.unam.mx/ss-pruebas',
// api: "https://890af9d598a4.ngrok.io"
// api: "https://venus.acatlan.unam.mx/serviciosocial",
},
}