KawAnime/nuxt.config.js

34 lines
784 B
JavaScript
Raw Normal View History

2017-04-15 14:16:14 +00:00
const {join} = require('path')
module.exports = {
/*
** Electron Settings
*/
electron: {
width: 1200,
height: 800
},
build: {
vendor: ['vuetify', 'axios']
},
plugins: [
'~plugins/vuetify.js'
2017-04-15 14:16:14 +00:00
],
css: [
{src: join(__dirname, 'css/app.styl'), lang: 'styl'},
{src: join(__dirname, 'css/main.css'), lang: 'css'}
2017-04-15 14:16:14 +00:00
],
head: {
titleTemplate: '%s - KawAnime',
meta: [
{charset: 'utf-8'},
{name: 'viewport', content: 'width=device-width, initial-scale=1'}
],
2017-04-15 14:16:14 +00:00
link: [
{rel: 'icon', type: 'image/x-icon', href: '/favicon.ico'},
2017-04-15 14:16:14 +00:00
{rel: 'stylesheet', href: 'http://fonts.googleapis.com/css?family=Roboto'},
{rel: 'stylesheet', href: 'http://fonts.googleapis.com/icon?family=Material+Icons'}
]
}
2017-05-08 13:18:10 +00:00
}