From 3210bed75507c15ac9d33d1e0aa5d123c5a060ec Mon Sep 17 00:00:00 2001 From: vinay <94120295+vinaykulk621@users.noreply.github.com> Date: Tue, 1 Aug 2023 20:51:18 +0530 Subject: [PATCH] fix(next-template): remove experimental `appdir` (#979) Co-authored-by: shadcn --- templates/next-template/next.config.mjs | 3 --- 1 file changed, 3 deletions(-) diff --git a/templates/next-template/next.config.mjs b/templates/next-template/next.config.mjs index b561a91ebd..94be31c3d5 100644 --- a/templates/next-template/next.config.mjs +++ b/templates/next-template/next.config.mjs @@ -1,9 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, - experimental: { - appDir: true, - }, } export default nextConfig