From 12f3f5fcea2daaa6af2e90c1fc40e354bff982be Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Tue, 27 Sep 2022 08:47:26 -0400 Subject: [PATCH] Redirect www to apex domain using Netlify (#1052) --- netlify.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/netlify.toml b/netlify.toml index 7a9c04e1927..c2e46062dcf 100644 --- a/netlify.toml +++ b/netlify.toml @@ -4,3 +4,8 @@ command = "npm run build:preview" [context.production] command = "npm run build:production" + +[[redirects]] +from = "https://www.grpc.io/*" +to = "https://grpc.io/:splat" +force = true