UNPKG

vue-js-modal

Version:
60 lines (59 loc) 1.31 kB
export default { /* ** Nuxt rendering mode ** See https://nuxtjs.org/api/configuration-mode */ mode: 'universal', /* ** Nuxt target ** See https://nuxtjs.org/api/configuration-target */ target: 'server', /* ** Headers of the page ** See https://nuxtjs.org/api/configuration-head */ 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' }], }, /* ** Global CSS */ css: [], /* ** Plugins to load before mounting the App ** https://nuxtjs.org/guide/plugins */ plugins: ['~/plugins/vue-js-modal.js'], /* ** Auto import components ** See https://nuxtjs.org/api/configuration-components */ components: true, /* ** Nuxt.js dev-modules */ buildModules: [ // Doc: https://github.com/nuxt-community/eslint-module '@nuxtjs/eslint-module', ], /* ** Nuxt.js modules */ modules: [], /* ** Build configuration ** See https://nuxtjs.org/api/configuration-build/ */ build: {}, }