mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
104 lines
2.3 KiB
JavaScript
104 lines
2.3 KiB
JavaScript
module.exports = {
|
|
mode: 'universal',
|
|
/*
|
|
** Headers of the page
|
|
*/
|
|
head: {
|
|
meta: [
|
|
{ charset: 'utf-8' },
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
|
],
|
|
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }]
|
|
},
|
|
dev: (process.env.NODE_ENV !== 'production'),
|
|
serverMiddleware: [
|
|
{ path: '/api', handler: '@/server/api/index.js' }
|
|
],
|
|
|
|
/*
|
|
** Customize the progress-bar color
|
|
*/
|
|
// loading: { color: '#fff' },
|
|
|
|
/*
|
|
** Global CSS
|
|
*/
|
|
css: [
|
|
'bootstrap/dist/css/bootstrap.css',
|
|
'element-ui/lib/theme-chalk/index.css'
|
|
],
|
|
|
|
/*
|
|
** Plugins to load before mounting the App
|
|
*/
|
|
plugins: [
|
|
'@/plugins/element-ui', // UI library -> https://element.eleme.io/#/en-US/
|
|
'@/plugins/filters', // text filters, datetime, etc.
|
|
'@/plugins/vue-awesome', // icon
|
|
'@/plugins/axios', // icon
|
|
{ src: '@/plugins/v-calendar', ssr: false } // calendar, TO-REDO
|
|
],
|
|
|
|
/*
|
|
** Nuxt.js modules
|
|
*/
|
|
modules: [
|
|
// Doc: https://axios.nuxtjs.org/usage
|
|
'@nuxtjs/axios',
|
|
'@nuxtjs/auth',
|
|
['nuxt-i18n', {
|
|
locales: [
|
|
{ code: 'en', iso: 'en-US', file: './locales/en.js' },
|
|
{ code: 'it', iso: 'it-IT', file: './locales/it.js' },
|
|
],
|
|
defaultLocale: 'it',
|
|
vueI18n: {
|
|
fallbackLocale: 'it',
|
|
messages: {
|
|
it: require('./locales/it'),
|
|
en: require('./locales/en'),
|
|
}
|
|
}
|
|
}]
|
|
],
|
|
/*
|
|
** Axios module configuration
|
|
* See https://github.com/nuxt-community/axios-module#options
|
|
*/
|
|
axios: {
|
|
prefix: '/api'
|
|
},
|
|
auth: {
|
|
strategies: {
|
|
local: {
|
|
endpoints: {
|
|
login: { url: '/auth/login', method: 'post', propertyName: 'token' },
|
|
logout: false,
|
|
user: { url: '/auth/user', method: 'get', propertyName: false }
|
|
}
|
|
}
|
|
}
|
|
},
|
|
|
|
/*
|
|
** Build configuration
|
|
*/
|
|
build: {
|
|
optimization: {
|
|
splitChunks: {
|
|
cacheGroups: {
|
|
element: {
|
|
test: /[\\/]node_modules[\\/](element-ui)[\\/]/,
|
|
name: 'element-ui',
|
|
chunks: 'all'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
transpile: [/^element-ui/, /^vue-awesome/],
|
|
splitChunks: {
|
|
layouts: true
|
|
},
|
|
cache: true,
|
|
}
|
|
}
|