feat: custom

This commit is contained in:
2026-05-02 16:57:21 -04:00
Verified
parent c1b821de0f
commit 49c5be6f4b
9 changed files with 154 additions and 20 deletions

View File

@@ -3,11 +3,29 @@
DuckDuckGo's bang redirects are too slow. Add the following URL as a custom search engine to your browser. Enables all of DuckDuckGo's bangs to work, but much faster.
```
https://unduck.link?q=%s
https://unduck.abunchofknowitalls.com?q=%s
```
## How is it that much faster?
DuckDuckGo does their redirects server side. Their DNS is...not always great. Result is that it often takes ages.
I solved this by doing all of the work client side. Once you've went to https://unduck.link once, the JS is all cache'd and will never need to be downloaded again. Your device does the redirects, not me.
I solved this by doing all of the work client side. Once you've went to https://unduck.abunchofknowitalls.com once, the JS is all cache'd and will never need to be downloaded again. Your device does the redirects, not me.
## Docker
Build the image:
```sh
docker build -t unduck .
```
Run the container:
```sh
docker run --rm -p 8080:8080 unduck
```
The app will then be available at [http://localhost:8080](http://localhost:8080).
Forked from Theo Browne's [Unduck](https://github.com/T3-Content/unduck)