Initail_Commit

This commit is contained in:
2024-10-20 21:56:52 +02:00
commit ec47039eae
191 changed files with 21402 additions and 0 deletions

13
next.config.mjs Normal file
View File

@@ -0,0 +1,13 @@
import mdx from '@next/mdx';
const withMDX = mdx({
extension: /\.mdx?$/,
options: { },
});
/** @type {import('next').NextConfig} */
const nextConfig = {
pageExtensions: ['ts', 'tsx', 'md', 'mdx'],
};
export default withMDX(nextConfig);