Refactor code structure for improved readability and maintainability

This commit is contained in:
암냥 2025-11-23 17:46:38 +09:00
commit 3c600c06f9
11 changed files with 47 additions and 130 deletions

View file

@ -1,10 +1,6 @@
import type { NextConfig } from "next";
import createMDX from '@next/mdx';
const path = require('path')
const withMDX = createMDX({
options: {},
})
const path = require('path')
const nextConfig: NextConfig = {
pageExtensions: ['ts', 'tsx', 'mdx'],
@ -15,4 +11,4 @@ const nextConfig: NextConfig = {
output: 'standalone',
};
export default withMDX(nextConfig);
export default nextConfig;