31 lines
783 B
JavaScript
31 lines
783 B
JavaScript
export default {
|
|
server: { port: 4200 },
|
|
mode: 'spa',
|
|
target: 'server',
|
|
head: {
|
|
title: process.env.npm_package_name || '',
|
|
meta: [
|
|
{ charset: 'utf-8' },
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
|
{
|
|
hid: 'description',
|
|
name: 'description',
|
|
content: process.env.npm_package_description || '',
|
|
},
|
|
],
|
|
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }],
|
|
},
|
|
css: [],
|
|
plugins: [],
|
|
components: true,
|
|
buildModules: ['@nuxtjs/eslint-module'],
|
|
modules: ['bootstrap-vue/nuxt'],
|
|
build: {},
|
|
env: {
|
|
// api: "http://localhost:3000"
|
|
// api: 'https://f856b4d485e1.ngrok.io',
|
|
api: 'https://venus.acatlan.unam.mx/pruebas_pcpuma',
|
|
// api: "http://"
|
|
},
|
|
}
|