My profile Picture

You should set up redirects from your domain to social media accounts

I change my social media handles quite often for various reasons, if you do that too, you also need to remember to update links to your accounts on various articles, youtube video descriptions and that gets annoying pretty damn quickly.

instead of doing that, you could simply setup a redirect from say <yourdomain>.com/social/twitter to twitter.com/<yourhandle> and from now you on reference the redirect in your articles and business cards

here is how to set it up in Next.JS, it should be trivial to setup in other frameworks or servers too.

next.config.js
const nextConfig = {
  async redirects() {
    return [
      {
        source: "/twitter",
        destination: "https://twitter.com/floatnotreal",
        permanent: true,
      },
    ];
  },
};

module.exports = nextConfig;

A problem you may notice, is that when setting up redirects you lose the metadata and more importantly opengraph images the social media site provides, I've yet to find a good solution for that, if you've got any idea, reach out!

That's pretty much it for now, I've just got back into blogging so I am starting with a smaller article, I'll leave you with this fun xkcd for now!

xkcd #302
xkcd #302

if you've enjoyed this article,consider buying me a coffee. currently I am saving up for a better microphone!

Likes & Reposts

the profile picture of Adam :prami:the profile picture of ricardo :mastodon:

Replies

Reval
Reval from

@spacebuffer so... do as I say, not as I do?