2020-10-28 11:38:03 -06:00
|
|
|
export default {
|
2021-04-06 07:54:09 -05:00
|
|
|
/* Server de pruebas */
|
2023-07-25 16:24:00 -06:00
|
|
|
server: { port: 3016 },
|
|
|
|
|
// server: { port: 8080 },
|
2020-11-10 09:53:24 -06:00
|
|
|
ssr: false,
|
2021-04-20 21:47:01 -05:00
|
|
|
target: 'static',
|
2020-10-28 11:38:03 -06:00
|
|
|
head: {
|
2021-04-20 21:47:01 -05:00
|
|
|
title: 'IRIS',
|
|
|
|
|
htmlAttrs: {
|
|
|
|
|
lang: 'es',
|
|
|
|
|
},
|
2020-10-28 11:38:03 -06:00
|
|
|
meta: [
|
2021-04-20 21:47:01 -05:00
|
|
|
{ charset: 'utf-8' },
|
|
|
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
|
|
|
|
{ hid: 'description', name: 'description', content: '' },
|
2020-10-28 11:38:03 -06:00
|
|
|
],
|
2021-04-20 21:47:01 -05:00
|
|
|
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }],
|
2020-10-28 11:38:03 -06:00
|
|
|
},
|
2020-12-07 19:01:11 -06:00
|
|
|
css: [],
|
|
|
|
|
plugins: [],
|
2020-10-28 11:38:03 -06:00
|
|
|
components: true,
|
2021-04-20 21:47:01 -05:00
|
|
|
buildModules: [],
|
|
|
|
|
modules: ['nuxt-buefy', '@nuxtjs/axios'],
|
2020-10-28 11:38:03 -06:00
|
|
|
axios: {},
|
2020-12-07 19:01:11 -06:00
|
|
|
build: {},
|
2020-11-23 15:03:03 -06:00
|
|
|
env: {
|
2025-02-13 16:33:59 -06:00
|
|
|
//api: 'http://localhost:3000',
|
2020-12-27 14:33:57 -06:00
|
|
|
// api: "https://890af9d598a4.ngrok.io"
|
2025-02-21 11:56:14 -06:00
|
|
|
//api: 'https://venus.acatlan.unam.mx/ss-pruebas',
|
|
|
|
|
api: 'https://venus.acatlan.unam.mx/serviciosocial',
|
2020-12-29 00:15:36 -06:00
|
|
|
},
|
2021-04-20 21:47:01 -05:00
|
|
|
}
|