Files
servicio_social_front/nuxt.config.js
T

55 lines
1.5 KiB
JavaScript
Raw Normal View History

2020-10-28 11:38:03 -06:00
export default {
2020-11-10 10:00:26 -06:00
server: { port: 8080 },
2020-11-10 09:53:24 -06:00
// Disable server-side rendering (https://go.nuxtjs.dev/ssr-mode)
ssr: false,
// Target (https://go.nuxtjs.dev/config-target)
2020-12-07 19:01:11 -06:00
target: "static",
2020-11-10 09:53:24 -06:00
// Global page headers (https://go.nuxtjs.dev/config-head)
2020-10-28 11:38:03 -06:00
head: {
2020-12-07 19:01:11 -06:00
title: "servicio_social_front",
2020-10-28 11:38:03 -06:00
meta: [
2020-12-07 19:01:11 -06: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
],
2020-12-07 19:01:11 -06:00
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" }],
2020-10-28 11:38:03 -06:00
},
2020-11-10 09:53:24 -06:00
// Global CSS (https://go.nuxtjs.dev/config-css)
2020-12-07 19:01:11 -06:00
css: [],
2020-11-10 09:53:24 -06:00
// Plugins to run before rendering page (https://go.nuxtjs.dev/config-plugins)
2020-12-07 19:01:11 -06:00
plugins: [],
2020-11-10 09:53:24 -06:00
// Auto import components (https://go.nuxtjs.dev/config-components)
2020-10-28 11:38:03 -06:00
components: true,
2020-11-10 09:53:24 -06:00
// Modules for dev and build (recommended) (https://go.nuxtjs.dev/config-modules)
buildModules: [
// https://go.nuxtjs.dev/eslint
2020-11-11 18:13:26 -06:00
// '@nuxtjs/eslint-module'
2020-11-10 09:53:24 -06:00
],
// Modules (https://go.nuxtjs.dev/config-modules)
modules: [
// https://go.nuxtjs.dev/buefy
2020-12-07 19:01:11 -06:00
"nuxt-buefy",
2020-11-10 09:53:24 -06:00
// https://go.nuxtjs.dev/axios
2020-12-07 19:01:11 -06:00
"@nuxtjs/axios",
2020-11-10 09:53:24 -06:00
],
// Axios module configuration (https://go.nuxtjs.dev/config-axios)
2020-10-28 11:38:03 -06:00
axios: {},
2020-11-10 09:53:24 -06:00
// Build Configuration (https://go.nuxtjs.dev/config-build)
2020-12-07 19:01:11 -06:00
build: {},
2020-11-23 15:03:03 -06:00
env: {
2021-01-06 16:33:56 -06:00
api: "http://localhost:3000",
// api: "https://venus.acatlan.unam.mx/ss-pruebas",
2020-12-27 14:33:57 -06:00
// api: "https://890af9d598a4.ngrok.io"
2020-11-30 19:57:08 -06:00
// api: 'https//venus.acatlan.unam.mx/pruebas_pcpuma'
2020-12-29 00:15:36 -06:00
},
};