summaryrefslogtreecommitdiff
path: root/.changeset/light-pants-smoke.md
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2025-01-30 03:21:41 -0800
committerGravatar GitHub <noreply@github.com> 2025-01-30 11:21:41 +0000
commitf6b7839411233c95af529eb0eee098c24e1d9d80 (patch)
tree88967bbd7760edfc1aba5d552bc91b8602d61aa0 /.changeset/light-pants-smoke.md
parent2ab0a61024fa6631c35ee99a31f3c409d21dd95d (diff)
downloadastro-@astrojs/tailwind@6.0.0.tar.gz
astro-@astrojs/tailwind@6.0.0.tar.zst
astro-@astrojs/tailwind@6.0.0.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to '.changeset/light-pants-smoke.md')
-rw-r--r--.changeset/light-pants-smoke.md22
1 files changed, 0 insertions, 22 deletions
diff --git a/.changeset/light-pants-smoke.md b/.changeset/light-pants-smoke.md
deleted file mode 100644
index 6a7f4a15b..000000000
--- a/.changeset/light-pants-smoke.md
+++ /dev/null
@@ -1,22 +0,0 @@
----
-'astro': minor
----
-
-Adds support for redirecting to external sites with the [`redirects`](https://docs.astro.build/en/reference/configuration-reference/#redirects) configuration option.
-
-Now, you can redirect routes either internally to another path or externally by providing a URL beginning with `http` or `https`:
-
-```js
-// astro.config.mjs
-import {defineConfig} from "astro/config"
-
-export default defineConfig({
- redirects: {
- "/blog": "https://example.com/blog",
- "/news": {
- status: 302,
- destination: "https://example.com/news"
- }
- }
-})
-```