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: [
|
2017-07-11 05:58:46 +00:00
|
|
|
{src: join(__dirname, 'css/mdi.css'), lang: 'css'},
|
2017-07-06 20:01:26 +00:00
|
|
|
{src: join(__dirname, 'css/app.styl'), lang: 'styl'}
|
2017-04-15 14:16:14 +00:00
|
|
|
],
|
|
|
|
head: {
|
2017-06-25 23:29:00 +00:00
|
|
|
titleTemplate: '%s - KawAnime',
|
2017-05-16 12:38:36 +00:00
|
|
|
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-07-10 19:52:22 +00:00
|
|
|
{rel: 'stylesheet', href: 'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons'}
|
2017-04-15 14:16:14 +00:00
|
|
|
]
|
|
|
|
}
|
2017-05-08 13:18:10 +00:00
|
|
|
}
|