2019-04-04 06:52:52 +02:00
|
|
|
module.exports = {
|
|
|
|
title: 'Super Graph',
|
|
|
|
description: 'Get an instant GraphQL API for your Rails apps.',
|
|
|
|
|
|
|
|
themeConfig: {
|
2019-10-01 06:00:15 +02:00
|
|
|
logo: '/hologram.svg',
|
2019-04-04 06:52:52 +02:00
|
|
|
nav: [
|
2019-07-29 07:13:33 +02:00
|
|
|
{ text: 'Docs', link: '/guide' },
|
2019-08-02 16:07:50 +02:00
|
|
|
{ text: 'Deploy', link: '/deploy' },
|
2019-04-04 06:52:52 +02:00
|
|
|
{ text: 'Github', link: 'https://github.com/dosco/super-graph' },
|
|
|
|
{ text: 'Docker', link: 'https://hub.docker.com/r/dosco/super-graph/builds' },
|
2019-10-05 04:20:54 +02:00
|
|
|
{ text: 'Join Chat', link: 'https://discord.gg/NKdXBc' },
|
|
|
|
|
2019-04-18 05:35:08 +02:00
|
|
|
],
|
|
|
|
serviceWorker: {
|
|
|
|
updatePopup: true
|
2019-08-02 16:07:50 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
postcss: {
|
|
|
|
plugins: [
|
|
|
|
require('postcss-import'),
|
|
|
|
require('tailwindcss'),
|
|
|
|
require('postcss-nested'),
|
|
|
|
require('autoprefixer')
|
|
|
|
]
|
|
|
|
},
|
|
|
|
|
|
|
|
plugins: [
|
|
|
|
'@vuepress/plugin-nprogress',
|
|
|
|
]
|
2019-04-13 16:30:02 +02:00
|
|
|
}
|