25 lines
609 B
JavaScript
25 lines
609 B
JavaScript
export default {
|
|
server: { port: 8080 },
|
|
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: {},
|
|
}
|