Coollabs fonts - replacement for Google font

coolLabs Fonts
coolLabs Fonts
A privacy-friendly drop-in replacement for Google Fonts
3 Replies
Squidgical
Squidgical2y ago
dammit discord I'm following this thread let me link it
b1mind
b1mindOP2y ago
yea its been weird for me too
Squidgical
Squidgical2y ago
May as well leave this in here; Here's how you can update your Vite-powered website to use coollabs instead of google fonts (or simply avoid changing your copy-pasted google fonts code). It also upgrades urls to https in case you accidentally included an insecure URL.
import { defineConfig } from "vite";

export default defineConfig({
plugins: [
...,
{
name: "vite-plugin-coollab-transform",
transform: (code) =>
code.replace(/"https?:\/\/fonts.googleapis.com/, '"https://api.fonts.coollabs.io/'),
},
],
});
import { defineConfig } from "vite";

export default defineConfig({
plugins: [
...,
{
name: "vite-plugin-coollab-transform",
transform: (code) =>
code.replace(/"https?:\/\/fonts.googleapis.com/, '"https://api.fonts.coollabs.io/'),
},
],
});

Did you find this page helpful?