91 lines
1.9 KiB
JavaScript
91 lines
1.9 KiB
JavaScript
export default {
|
|
ssr: false,
|
|
/*
|
|
** Headers of the page
|
|
*/
|
|
head: {
|
|
title: 'Finanzas',
|
|
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.png' },
|
|
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css?family=Poppins:200,300,400,600,700,800' },
|
|
{ rel: 'stylesheet', href: 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css' }
|
|
],
|
|
bodyAttrs: {
|
|
class: 'white-content' // Add `white-content` class here to enable "white" mode.
|
|
}
|
|
},
|
|
router: {
|
|
linkExactActiveClass: 'active'
|
|
},
|
|
/*
|
|
** Customize the progress-bar color
|
|
*/
|
|
loading: { color: '#fff' },
|
|
/*
|
|
** Global CSS
|
|
*/
|
|
css: [
|
|
'assets/css/demo.css',
|
|
'assets/css/nucleo-icons.css',
|
|
'assets/sass/black-dashboard.scss'
|
|
],
|
|
/*
|
|
** Plugins to load before mounting the App
|
|
*/
|
|
plugins: [
|
|
`~/plugins/dashboard-plugin.js`,
|
|
],
|
|
//autoimport
|
|
components: true,
|
|
/*
|
|
** Nuxt.js dev-modules
|
|
*/
|
|
buildModules: [],
|
|
/*
|
|
** Nuxt.js modules
|
|
*/
|
|
modules: [
|
|
'@nuxtjs/pwa',
|
|
'@nuxtjs/axios',
|
|
'nuxt-highcharts',
|
|
|
|
],
|
|
|
|
|
|
|
|
// Axios module configuration (https://go.nuxtjs.dev/config-axios)
|
|
axios: {
|
|
//baseURL: "http://192.168.1.111:4000/api"
|
|
//baseURL:"http://localhost:4000/api"
|
|
baseURL:"https://finanzasm.herokuapp.com/api"
|
|
},
|
|
|
|
/*
|
|
** Build configuration
|
|
*/
|
|
build: {
|
|
transpile: [/^element-ui/],
|
|
/*
|
|
** You can extend webpack config here
|
|
*/
|
|
extend(config, ctx) {
|
|
},
|
|
babel: {
|
|
plugins: [
|
|
[
|
|
'component',
|
|
{
|
|
'libraryName': 'element-ui',
|
|
'styleLibraryName': 'theme-chalk'
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|
|
}
|