Skip to content

Instantly share code, notes, and snippets.

@abe-lib
Last active November 15, 2018 00:55
Show Gist options
  • Save abe-lib/53b76cf10a9dd2b3e6c40eb3b09a3628 to your computer and use it in GitHub Desktop.
Save abe-lib/53b76cf10a9dd2b3e6c40eb3b09a3628 to your computer and use it in GitHub Desktop.
簡易メモ帳設定ファイル
const pkg = require('./package')
module.exports = {
mode: 'spa',
head: {
title: "TEMPO MEMO",
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: pkg.description }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css?family=Lato' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/earlyaccess/notosansjapanese.css' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/icon?family=Material+Icons' },
],
script: [
]
},
loading: { color: '#FFFFFF' },
css: [
'element-ui/lib/theme-chalk/index.css',
'highlight.js/styles/monokai-sublime.css',
],
plugins: [
'@/plugins/element-ui'
],
modules: [
'@nuxtjs/axios',
],
axios: {
baseURL: process.env.BASE_URL || 'https://tempomemo-6ca8f.firebaseio.com/'
},
build: {
extend(config, ctx) {
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment