118 lines
2.9 KiB
JavaScript
118 lines
2.9 KiB
JavaScript
export default {
|
|
// Enable server-side rendering: https://go.nuxtjs.dev/ssr-mode
|
|
ssr: true,
|
|
|
|
// Target: https://go.nuxtjs.dev/config-target
|
|
target: 'server',
|
|
|
|
// Global page headers: https://go.nuxtjs.dev/config-head
|
|
head: {
|
|
title: 'Dev blog',
|
|
meta: [
|
|
{ charset: 'utf-8' },
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
|
{ hid: 'description', name: 'description', content: '' },
|
|
{ name: 'format-detection', content: 'telephone=no' },
|
|
{ hid: "og:image", name: 'og:image', content: "https://s3rius.blog/icon.png"}
|
|
],
|
|
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }],
|
|
headAttrs: {
|
|
"prefix": "og: http://ogp.me/ns#"
|
|
}
|
|
},
|
|
|
|
// Global CSS: https://go.nuxtjs.dev/config-css
|
|
css: [
|
|
'~/static/css/syntax-highlighter.scss',
|
|
'~/static/css/global-styles.scss',
|
|
],
|
|
|
|
// Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
|
|
plugins: [],
|
|
|
|
// Auto import components: https://go.nuxtjs.dev/config-components
|
|
components: true,
|
|
|
|
generate: {
|
|
routes: async () => {
|
|
const { $content } = require('@nuxt/content')
|
|
const pages = await $content('ru').only(['slug']).fetch()
|
|
return pages.map((p) => `/${p.slug}`)
|
|
},
|
|
},
|
|
|
|
// Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
|
|
buildModules: [
|
|
// https://go.nuxtjs.dev/stylelint
|
|
'@nuxtjs/stylelint-module',
|
|
'@nuxtjs/composition-api/module',
|
|
],
|
|
|
|
// Modules: https://go.nuxtjs.dev/config-modules
|
|
modules: [
|
|
// https://go.nuxtjs.dev/buefy
|
|
'nuxt-buefy',
|
|
// https://go.nuxtjs.dev/axios
|
|
'@nuxtjs/axios',
|
|
// https://go.nuxtjs.dev/pwa
|
|
'@nuxtjs/pwa',
|
|
// https://content.nuxtjs.org/
|
|
'@nuxt/content',
|
|
// https://sitemap.nuxtjs.org/
|
|
'@nuxtjs/sitemap',
|
|
// https://github.com/nuxt-community/robots-module
|
|
'@nuxtjs/robots'
|
|
],
|
|
|
|
// Axios module configuration: https://go.nuxtjs.dev/config-axios
|
|
axios: {},
|
|
|
|
// PWA module configuration: https://go.nuxtjs.dev/pwa
|
|
pwa: {
|
|
manifest: {
|
|
name: "S3rius' dev blog",
|
|
short_name: 'Dev blog',
|
|
lang: 'ru',
|
|
background_color: '#fafdff',
|
|
theme_color: '#687cec',
|
|
},
|
|
icon: {
|
|
fileName: 'icon.png',
|
|
purpose: 'any',
|
|
},
|
|
},
|
|
|
|
// Build Configuration: https://go.nuxtjs.dev/config-build
|
|
build: {},
|
|
|
|
sitemap: {
|
|
hostname: 'https://s3rius.blog/',
|
|
},
|
|
|
|
content: {
|
|
liveEdit: false,
|
|
markdown: {
|
|
remarkPlugins: [
|
|
'remark-squeeze-paragraphs',
|
|
'remark-slug',
|
|
'remark-external-links',
|
|
'remark-footnotes',
|
|
],
|
|
rehypePlugins: [
|
|
'rehype-sort-attribute-values',
|
|
'rehype-sort-attributes',
|
|
'rehype-raw',
|
|
],
|
|
prism: {
|
|
theme: false,
|
|
},
|
|
},
|
|
},
|
|
robots: [
|
|
{
|
|
UserAgent: '*',
|
|
Sitemap: 'https://s3rius.blog/sitemap.xml'
|
|
},
|
|
],
|
|
}
|