@@ -22,9 +26,12 @@ export default function VideoSection() {
future: (chunks) => (
{chunks}
-
+
- )
+ ),
})}
diff --git a/next.config.mjs b/next.config.mjs
index 17d82308..071f2027 100644
--- a/next.config.mjs
+++ b/next.config.mjs
@@ -8,6 +8,7 @@ const nextConfig = {
// Make sure entries are not disposed too quickly
maxInactiveAge: 60 * 1000,
},
+ productionBrowserSourceMaps: false,
logging: {
fetches: {
fullUrl: true,
@@ -353,4 +354,6 @@ const nextConfig = {
},
};
-export default withMintelConfig(nextConfig);
+export default withMintelConfig(nextConfig, {
+ hideSourceMaps: true,
+});
diff --git a/package.json b/package.json
index cd3f7b21..29347467 100644
--- a/package.json
+++ b/package.json
@@ -129,6 +129,11 @@
"next": "16.1.6"
}
},
+ "browserslist": [
+ "last 3 versions",
+ "not dead",
+ "not ie 11"
+ ],
"peerDependencies": {
"@remotion/cli": "^4.0.421",
"@remotion/google-fonts": "^4.0.421",