mirror of
https://github.com/supabase/supabase.git
synced 2026-06-21 01:56:06 +08:00
* graphql section * fix(federation): markdown image links * feat(federation): support mkdocs admonition title * feat(federation): remark pymdown tab support * fix codehike path * graphql icon renders * replace serverless-apis with REST * run prettier * update serverless apis ref * remove GraphQL and Realtime references from REST docs * move realtime example to realtime overview section * new section for apis * prettier * product label * move realtime back to products * feat: graphql nav menu + simplified path * chore: remove console log --------- Co-authored-by: Greg Richardson <greg.nmr@gmail.com>
125 lines
2.7 KiB
JavaScript
125 lines
2.7 KiB
JavaScript
// @ts-check
|
|
import nextMdx from '@next/mdx'
|
|
import remarkGfm from 'remark-gfm'
|
|
import rehypeSlug from 'rehype-slug'
|
|
import { remarkCodeHike } from '@code-hike/mdx'
|
|
|
|
import withTM from 'next-transpile-modules'
|
|
import withYaml from 'next-plugin-yaml'
|
|
import configureBundleAnalyzer from '@next/bundle-analyzer'
|
|
|
|
import codeHikeTheme from 'config/code-hike.theme.json' assert { type: 'json' }
|
|
|
|
const withBundleAnalyzer = configureBundleAnalyzer({
|
|
enabled: process.env.ANALYZE === 'true',
|
|
})
|
|
|
|
/**
|
|
* Rewrites and redirects are handled by
|
|
* apps/www nextjs config
|
|
*
|
|
* Do not add them in this config
|
|
*/
|
|
|
|
const withMDX = nextMdx({
|
|
extension: /\.mdx?$/,
|
|
options: {
|
|
remarkPlugins: [
|
|
[
|
|
remarkCodeHike,
|
|
{
|
|
theme: codeHikeTheme,
|
|
lineNumbers: true,
|
|
showCopyButton: true,
|
|
},
|
|
],
|
|
remarkGfm,
|
|
],
|
|
rehypePlugins: [rehypeSlug],
|
|
providerImportSource: '@mdx-js/react',
|
|
},
|
|
})
|
|
|
|
/** @type {import('next').NextConfig} nextConfig */
|
|
const nextConfig = {
|
|
// Append the default value with md extensions
|
|
pageExtensions: ['ts', 'tsx', 'js', 'jsx', 'md', 'mdx'],
|
|
// reactStrictMode: true,
|
|
// swcMinify: true,
|
|
basePath: '/docs',
|
|
images: {
|
|
dangerouslyAllowSVG: true,
|
|
domains: [
|
|
'avatars.githubusercontent.com',
|
|
'github.com',
|
|
'supabase.github.io',
|
|
'user-images.githubusercontent.com',
|
|
'raw.githubusercontent.com',
|
|
'weweb-changelog.ghost.io',
|
|
'img.youtube.com',
|
|
'archbee-image-uploads.s3.amazonaws.com',
|
|
'obuldanrptloktxcffvn.supabase.co',
|
|
],
|
|
},
|
|
experimental: {
|
|
// TODO: @next/mdx ^13.0.2 only supports experimental mdxRs flag. next ^13.0.2 will stop warning about this being unsupported.
|
|
// mdxRs: true,
|
|
modularizeImports: {
|
|
lodash: {
|
|
transform: 'lodash/{{member}}',
|
|
},
|
|
},
|
|
},
|
|
async headers() {
|
|
return [
|
|
{
|
|
source: '/:path*',
|
|
headers: [
|
|
{
|
|
key: 'Strict-Transport-Security',
|
|
value: '',
|
|
},
|
|
{
|
|
key: 'X-Robots-Tag',
|
|
value: 'all',
|
|
},
|
|
{
|
|
key: 'X-Frame-Options',
|
|
value: 'DENY',
|
|
},
|
|
],
|
|
},
|
|
]
|
|
},
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: '/',
|
|
destination: '/docs',
|
|
basePath: false,
|
|
permanent: false,
|
|
},
|
|
]
|
|
},
|
|
}
|
|
|
|
const configExport = () => {
|
|
const plugins = [
|
|
withTM([
|
|
'ui',
|
|
'common',
|
|
'@supabase/auth-helpers-nextjs',
|
|
'mermaid',
|
|
'mdx-mermaid',
|
|
'dayjs',
|
|
'shared-data',
|
|
]),
|
|
withMDX,
|
|
withYaml,
|
|
withBundleAnalyzer,
|
|
]
|
|
return plugins.reduce((acc, next) => next(acc), nextConfig)
|
|
}
|
|
|
|
export default configExport
|