* docs: fix index.html.md causing 404 * update next.js * test * test * test * test * fix revalidate * test * test * test * test * test * test * test * test * clean up
17 lines
428 B
JavaScript
17 lines
428 B
JavaScript
const { withContentlayer } = require("next-contentlayer")
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
basePath: process.env.NEXT_PUBLIC_BASE_PATH || "/ui",
|
|
reactStrictMode: true,
|
|
outputFileTracingIncludes: {
|
|
"/md\\-content/\\[\\[\\.\\.\\.slug\\]\\]": [
|
|
"./src/content/docs/**/*.mdx",
|
|
"./specs/**/*",
|
|
"./examples/**/*"
|
|
],
|
|
},
|
|
}
|
|
|
|
module.exports = withContentlayer(nextConfig)
|