diff --git a/site/next.config.mjs b/site/next.config.mjs index 0dc8c4d..7079068 100644 --- a/site/next.config.mjs +++ b/site/next.config.mjs @@ -22,17 +22,8 @@ const config = { webpack: (config, { buildId, dev }) => { config.resolve.symlinks = false return config - } -} - -const rewrites = async () => { - return [ - { - source: '/concepts/:page(.md)', - destination: '/concepts/:page', - }, - ] + }, } -export default withMDX(rewrites(config)) +export default withMDX(config)