https://github.com/fyko/rickroll
a rickroll redirect and embed thing
https://github.com/fyko/rickroll
cloudflare-pages meme rickroll
Last synced: 4 months ago
JSON representation
a rickroll redirect and embed thing
- Host: GitHub
- URL: https://github.com/fyko/rickroll
- Owner: Fyko
- Created: 2023-10-21T18:48:03.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-21T20:31:01.000Z (over 2 years ago)
- Last Synced: 2025-03-29T19:43:21.826Z (about 1 year ago)
- Topics: cloudflare-pages, meme, rickroll
- Language: HTML
- Homepage: https://prettylandscapes.com
- Size: 79.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rickroll
Based on https://github.com/ShatteredDisk/rickroll
Video from https://twitter.com/DiffusionPics/status/1715441914848383432
## Using with Next.js
```js
/** @type {import('next').NextConfig} */
module.exports = {
async redirects() {
return [
{
source: '/your-redirect-here',
destination: 'https://prettylandscapes.com/rickroll.mp4',
permanent: true,
}
];
},
};
```