42 lines
1.0 KiB
JavaScript
42 lines
1.0 KiB
JavaScript
export default {
|
|
server: { port: 3016 }, // server de pruebas
|
|
// server: { port: 8080 },
|
|
// Disable server-side rendering (https://go.nuxtjs.dev/ssr-mode)
|
|
ssr: false,
|
|
target: "static",
|
|
head: {
|
|
title: "servicio_social_front",
|
|
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: [
|
|
// https://go.nuxtjs.dev/eslint
|
|
// '@nuxtjs/eslint-module'
|
|
],
|
|
modules: [
|
|
// https://go.nuxtjs.dev/buefy
|
|
"nuxt-buefy",
|
|
// https://go.nuxtjs.dev/axios
|
|
"@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",
|
|
},
|
|
};
|