We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edd2d99 commit b3b0c14Copy full SHA for b3b0c14
packages/mdx/next.config.js
@@ -1,4 +1,5 @@
1
module.exports = {
2
+ outputFileTracing: true,
3
redirects() {
4
return [
5
{
packages/mdx/pages/[name].tsx
@@ -6,6 +6,11 @@ import { CH } from "../src/components"
6
import theme from "shiki/themes/slack-dark.json"
7
import Link from "next/link"
8
9
+export const config = {
10
+ unstable_includeFiles: ["./tests"],
11
+ includeFiles: ["./tests"],
12
+}
13
+
14
export async function getServerSideProps({ params }) {
15
const files = await fs.promises.readdir("./tests/")
16
0 commit comments