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
18 lines
384 B
TypeScript
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);
|