summaryrefslogtreecommitdiffstats
path: root/src/assets/javascripts/helpers/google-search.js
blob: dc12042fde034fee5c3a28d1a2c5de002c704afa (plain)
1
2
3
4
5
6
7
8
9
export default class {
  static targets = /https?:\/\/(((www|maps)\.)?(google\.).*(\/search)|search\.(google\.).*)/;
  static redirects = [
    { link: "https://duckduckgo.com", q: "/" },
    { link: "https://startpage.com", q: "/search/" },
    { link: "https://www.qwant.com", q: "/" },
    { link: "https://www.mojeek.com", q: "/search" },
  ];
}