#nextjs-sandbox (forked) - StackBlitz
1 messages · Page 1 of 1 (latest)
but i added it
it wasn't there in original sandbox, i forked and added next.config.js
Why is that an issue?
i'm trying to do exactly what i did locally to try and reproduce the issue where _app.tsx is not rendering
and locally i set this config: ```ts
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
redirects: async () => [
{
source: "/",
destination: "/home",
permanent: true,
},
],
};
@hollow geode just ran across stackoverflow answer:
says:
- Create a /src folder in the root directory.
- Delete the /.next folder
I didn't deleted .next folder and that was the issue, i deleted and compiled and now it works
Oh ok, great!