mirror of
https://github.com/hanzo-docs/docs.git
synced 2026-07-27 04:31:57 +00:00
13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
pageExtensions: ['ts', 'tsx', 'js', 'jsx'],
|
|
reactStrictMode: true,
|
|
images: {
|
|
domains: ['i.pravatar.cc']
|
|
}
|
|
}
|
|
|
|
const { withContentlayer } = require('next-contentlayer')
|
|
|
|
module.exports = withContentlayer(config)
|