custom search engine

This commit is contained in:
Nebelung
2024-10-14 23:19:19 +00:00
parent 6f9b40bb22
commit 00ab327993
2 changed files with 51 additions and 1 deletions
+3 -1
View File
@@ -39,7 +39,9 @@ export default function Route({ params }: { params: { route: string[] } }) {
{
service: window.chemical.getStore("service"),
autoHttps: true,
searchEngine: "https://www.google.com/search?q=%s",
searchEngine:
window.chemical.getStore("searchEngine") ||
"https://www.google.com/search?q=%s",
}
);
}