diff --git a/next.config.js b/next.config.js index 92e8a95..576384d 100644 --- a/next.config.js +++ b/next.config.js @@ -8,4 +8,14 @@ module.exports = withNextra({ locales: ["en", "zh-CN"], defaultLocale: "en", }, + async redirects() { + return [ + { + source: "/launcher.sh", + destination: + "https://raw.githubusercontent.com/madara-alliance/madara/refs/heads/main/scripts/launcher", + permanent: false, + }, + ]; + }, });