Skip to content

Commit

Permalink
fix ub2r redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
oklopfer authored Dec 28, 2024
1 parent 5b2993d commit 0709782
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
async redirects() {
return [
{
source: '/ub2r',
destination: 'https://raw.githubusercontent.com/rhino-linux/os/refs/heads/main/ub2r.sh',
permanent: false,
},
];
},
};

export default nextConfig;

0 comments on commit 0709782

Please sign in to comment.