10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
reactStrictMode: true,
|
|
transpilePackages: ["react-markdown", "remark-gfm"],
|
|
};
|
|
|
|
export default nextConfig;
|