2022-05-30 23:08:35 +00:00
|
|
|
export default {
|
|
|
|
ssr: false,
|
|
|
|
/* Server de pruebas */
|
|
|
|
// server: { port: },
|
|
|
|
server: { port: 8080 },
|
|
|
|
target: 'static',
|
|
|
|
head: {
|
2022-05-30 23:52:52 +00:00
|
|
|
title: 'pcpuma_unam_operador',
|
2022-05-30 23:08:35 +00:00
|
|
|
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: {},
|
|
|
|
env: {
|
2022-05-31 18:57:35 +00:00
|
|
|
api: 'http://localhost:3000',
|
2022-05-30 23:08:35 +00:00
|
|
|
// api: "https://890af9d598a4.ngrok.io"
|
2022-05-31 18:57:35 +00:00
|
|
|
// api: 'https://venus.acatlan.unam.mx/pcpumaUnam_test',
|
2022-05-30 23:08:35 +00:00
|
|
|
// api: "https://venus.acatlan.unam.mx/produccion",
|
|
|
|
},
|
|
|
|
}
|