Add design doc for macos-intel-deprecation#13398
Conversation
There was a problem hiding this comment.
Code Review
This pull request adds a new 301 redirect to firebase.json for the macOS Intel deprecation document. The reviewer recommended removing the unnecessary usp=sharing query parameter from the destination URL to keep it concise and align with documentation style guidelines.
| { "source": "/go/lints-migration", "destination": "/release/breaking-changes/flutter-lints-package", "type": 301 }, | ||
| { "source": "/go/localizing-datetime", "destination": "https://docs.google.com/document/d/1QR3qLXWdroTVLbnAQ8mq-Ia6tsZ8NY3lmi7gySQAstU/edit", "type": 301 }, | ||
| { "source": "/go/mac-voiceover-text-editing", "destination": "https://docs.google.com/document/d/19YP1o4Shba6NzQTBH_EWC8y1GUhKAbo9dan4digFbZs", "type": 301 }, | ||
| { "source": "/go/macos-intel-deprecation", "destination": "https://docs.google.com/document/d/1ty3js_Eg2sNIbDuyYS_aV7h4jYdx1hEpX_mV135gO4s/edit?usp=sharing", "type": 301 }, |
There was a problem hiding this comment.
The destination URL contains an unnecessary usp=sharing query parameter. According to the Google Developer Documentation Style Guidelines (which this PR aims to follow), URLs should be kept as simple and short as possible. Removing this parameter results in a cleaner redirect.
| { "source": "/go/macos-intel-deprecation", "destination": "https://docs.google.com/document/d/1ty3js_Eg2sNIbDuyYS_aV7h4jYdx1hEpX_mV135gO4s/edit?usp=sharing", "type": 301 }, | |
| { "source": "/go/macos-intel-deprecation", "destination": "https://docs.google.com/document/d/1ty3js_Eg2sNIbDuyYS_aV7h4jYdx1hEpX_mV135gO4s/edit", "type": 301 }, |
References
- The Google Developer Documentation Style Guidelines recommend using the simplest, shortest URL possible. (link)
|
Visit the preview URL for this PR (updated for commit 9918924): https://flutter-docs-prod--pr13398-vashworth-patch-1-9n4qp8nw.web.app |
Add
/go/macos-intel-deprecationdesign doc redirect.