45 lines
1.1 KiB
JavaScript
45 lines
1.1 KiB
JavaScript
export default {
|
|
ssr: false,
|
|
server: { port: 3186 },
|
|
// server: { port: 3014 },
|
|
target: 'static',
|
|
head: {
|
|
title: 'pcpuma_unam_operador',
|
|
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: ['~/plugins/inject.js'],
|
|
components: true,
|
|
buildModules: [],
|
|
modules: ['nuxt-buefy', '@nuxtjs/axios', 'nuxt-socket-io'],
|
|
axios: {},
|
|
build: {},
|
|
io: {
|
|
sockets: [
|
|
{
|
|
name: 'main',
|
|
url: 'http://localhost:3000',
|
|
// url: 'https://venus.acatlan.unam.mx',
|
|
// url: 'https://pmodulospcpuma.unam.mx',
|
|
},
|
|
],
|
|
},
|
|
env: {
|
|
// api: 'http://localhost:3000',
|
|
api: 'https://venus.acatlan.unam.mx/pcpumaUnam_test',
|
|
// api: 'https://pmodulospcpuma.unam.mx/pcpumaUnam_test',
|
|
// api: 'https://modulospcpuma.unam.mx/',
|
|
path: '/socket.io/',
|
|
// path: '/pcpumaUnam_test/socket.io/',
|
|
// path: '/pcpumaUnam/socket.io/',
|
|
},
|
|
}
|