remaster text

This commit is contained in:
2025-06-28 06:42:16 +07:00
parent 7f02d1784f
commit c9cc5be5c9
9 changed files with 1073 additions and 52 deletions

View File

@@ -1,3 +1,5 @@
import createMDX from "@next/mdx"
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
@@ -10,7 +12,10 @@ const nextConfig = {
]
},
output: 'standalone',
productionBrowserSourceMaps: false
productionBrowserSourceMaps: false,
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
};
export default nextConfig;
const withMDX = createMDX()
export default withMDX(nextConfig);