42 lines
997 B
JavaScript
42 lines
997 B
JavaScript
export default {
|
|
/* Server de pruebas */
|
|
// server: { port: 3016 },
|
|
server: { port: 8080 },
|
|
ssr: false,
|
|
target: "static",
|
|
head: {
|
|
title: "IRIS",
|
|
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",
|
|
},
|
|
};
|