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: [
|
2017-04-16 19:55:47 +00:00
|
|
|
'~plugins/vuetify.js'
|
2017-04-15 14:16:14 +00:00
|
|
|
],
|
|
|
|
css: [
|
|
|
|
{src: join(__dirname, 'css/app.styl'), lang: 'styl'},
|
2017-05-30 09:06:52 +00:00
|
|
|
{src: join(__dirname, 'css/main.css'), lang: 'css'}
|
2017-04-15 14:16:14 +00:00
|
|
|
],
|
|
|
|
head: {
|
2017-05-16 12:38:36 +00:00
|
|
|
title: 'KawAnime',
|
|
|
|
meta: [
|
|
|
|
{charset: 'utf-8'},
|
2017-05-17 21:24:31 +00:00
|
|
|
{name: 'viewport', content: 'width=device-width, initial-scale=1'}
|
2017-05-16 12:38:36 +00:00
|
|
|
],
|
2017-04-15 14:16:14 +00:00
|
|
|
link: [
|
2017-05-26 14:18:35 +00:00
|
|
|
{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
|
|
|
}
|