mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
9 lines
242 B
JavaScript
9 lines
242 B
JavaScript
// next.config.js
|
|
const withNextra = require('nextra')({
|
|
theme: 'nextra-theme-docs',
|
|
themeConfig: './theme.config.js',
|
|
// optional: add `unstable_staticImage: true` to enable Nextra's auto image import
|
|
})
|
|
|
|
module.exports = withNextra()
|