An open API service indexing awesome lists of open source software.

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

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,
}
];
},
};

```