audiobookshelf.audiobookshe.../nuxt.config.js

79 lines
1.8 KiB
JavaScript
Raw Normal View History

2021-09-15 16:02:37 -05:00
export default {
target: 'static',
head: {
2021-09-26 11:45:07 -05:00
title: 'AudioBookshelf',
2021-09-15 16:02:37 -05:00
htmlAttrs: {
lang: 'en'
},
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: '' },
2021-09-26 12:21:33 -05:00
{ name: 'format-detection', content: 'telephone=no' },
{
property: 'og:title',
content: 'AudioBookshelf',
vmid: 'og:title'
},
{
property: 'og:image',
content: 'https://audiobookshelf.org/Logo.png',
vmid: 'og:image'
},
{
property: 'og:description',
content: 'Self-hosted audiobook server for managing and playing audiobooks',
vmid: 'og:description'
},
{
property: 'twitter:title',
content: 'AudioBookshelf',
vmid: 'twitter:title'
},
{
property: 'twitter:image',
content: 'https://audiobookshelf.org/Logo.png',
vmid: 'twitter:image'
},
{
property: 'twitter:description',
content: 'Self-hosted audiobook server for managing and playing audiobooks',
vmid: 'twitter:description'
},
{
name: 'twitter:card',
content: `summary_large_image`,
vmid: 'twitter:card'
}
2021-09-15 16:02:37 -05:00
],
link: [
2021-09-26 11:45:07 -05:00
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Fira+Mono&family=Ubuntu+Mono&family=Open+Sans:wght@400;600&family=Gentium+Book+Basic&family=Material+Icons' }
],
script: [
{
src: '/prism.js'
}
2021-09-15 16:02:37 -05:00
]
},
css: [
'@/assets/app.css'
],
2021-09-26 11:45:07 -05:00
plugins: [],
2021-09-15 16:02:37 -05:00
components: true,
buildModules: [
'@nuxtjs/tailwindcss',
],
modules: [
],
build: {
}
}