imnya.ng/next.config.ts
imnyang afbf913aec
refactor: simplify MDX options in next.config.ts
chore: update Radix UI dependencies to latest versions

chore: update Next.js and related packages to latest versions

style: add sidebar color variable in globals.css

refactor: remove Chart component and related logic
2025-11-20 00:28:22 +09:00

18 lines
384 B
TypeScript

import type { NextConfig } from "next";
import createMDX from '@next/mdx';
const path = require('path')
const withMDX = createMDX({
options: {},
})
const nextConfig: NextConfig = {
pageExtensions: ['ts', 'tsx', 'mdx'],
allowedDevOrigins: ['imnyang.dev'],
turbopack: {
root: path.join(__dirname, '.'),
},
output: 'standalone',
};
export default withMDX(nextConfig);