From 4b47a7ace70eb59fba637c61b43f491485bc03ca Mon Sep 17 00:00:00 2001 From: Chance Strickland Date: Fri, 17 Mar 2023 10:10:13 -0700 Subject: [PATCH] use `{ v2_errorBoundary: true }` in all templates --- templates/arc/remix.config.js | 1 + templates/cloudflare-pages/remix.config.js | 1 + templates/cloudflare-workers/remix.config.js | 1 + templates/deno/remix.config.js | 1 + templates/express/remix.config.js | 1 + templates/fly/remix.config.js | 1 + templates/netlify/remix.config.js | 1 + templates/remix/remix.config.js | 1 + templates/vercel/remix.config.js | 1 + 9 files changed, 9 insertions(+) diff --git a/templates/arc/remix.config.js b/templates/arc/remix.config.js index 68f8f2b2ce8..0620858a15d 100644 --- a/templates/arc/remix.config.js +++ b/templates/arc/remix.config.js @@ -9,5 +9,6 @@ module.exports = { future: { v2_meta: true, v2_routeConvention: true, + v2_errorBoundary: true, }, }; diff --git a/templates/cloudflare-pages/remix.config.js b/templates/cloudflare-pages/remix.config.js index 6eac7139e0e..1ad2b526cd7 100644 --- a/templates/cloudflare-pages/remix.config.js +++ b/templates/cloudflare-pages/remix.config.js @@ -16,5 +16,6 @@ module.exports = { future: { v2_meta: true, v2_routeConvention: true, + v2_errorBoundary: true, }, }; diff --git a/templates/cloudflare-workers/remix.config.js b/templates/cloudflare-workers/remix.config.js index dbbb61c8af5..de96fe15c7a 100644 --- a/templates/cloudflare-workers/remix.config.js +++ b/templates/cloudflare-workers/remix.config.js @@ -16,5 +16,6 @@ module.exports = { future: { v2_meta: true, v2_routeConvention: true, + v2_errorBoundary: true, }, }; diff --git a/templates/deno/remix.config.js b/templates/deno/remix.config.js index 1b13228ec15..23e8a0dd9ff 100644 --- a/templates/deno/remix.config.js +++ b/templates/deno/remix.config.js @@ -21,5 +21,6 @@ module.exports = { future: { v2_meta: true, v2_routeConvention: true, + v2_errorBoundary: true, }, }; diff --git a/templates/express/remix.config.js b/templates/express/remix.config.js index 4cafd02ce2a..e2b4bccf4b1 100644 --- a/templates/express/remix.config.js +++ b/templates/express/remix.config.js @@ -8,5 +8,6 @@ module.exports = { future: { v2_meta: true, v2_routeConvention: true, + v2_errorBoundary: true, }, }; diff --git a/templates/fly/remix.config.js b/templates/fly/remix.config.js index 4cafd02ce2a..e2b4bccf4b1 100644 --- a/templates/fly/remix.config.js +++ b/templates/fly/remix.config.js @@ -8,5 +8,6 @@ module.exports = { future: { v2_meta: true, v2_routeConvention: true, + v2_errorBoundary: true, }, }; diff --git a/templates/netlify/remix.config.js b/templates/netlify/remix.config.js index c268dfcab8e..5f40ca2045b 100644 --- a/templates/netlify/remix.config.js +++ b/templates/netlify/remix.config.js @@ -12,5 +12,6 @@ module.exports = { future: { v2_meta: true, v2_routeConvention: true, + v2_errorBoundary: true, }, }; diff --git a/templates/remix/remix.config.js b/templates/remix/remix.config.js index 4cafd02ce2a..e2b4bccf4b1 100644 --- a/templates/remix/remix.config.js +++ b/templates/remix/remix.config.js @@ -8,5 +8,6 @@ module.exports = { future: { v2_meta: true, v2_routeConvention: true, + v2_errorBoundary: true, }, }; diff --git a/templates/vercel/remix.config.js b/templates/vercel/remix.config.js index 14d0938d548..8a9bcda26c0 100644 --- a/templates/vercel/remix.config.js +++ b/templates/vercel/remix.config.js @@ -12,5 +12,6 @@ module.exports = { future: { v2_meta: true, v2_routeConvention: true, + v2_errorBoundary: true, }, };