An open API service indexing awesome lists of open source software.

https://github.com/coalaura/gfonter

Extract and combine google fonts imports.
https://github.com/coalaura/gfonter

Last synced: 2 months ago
JSON representation

Extract and combine google fonts imports.

Awesome Lists containing this project

README

        

# G-Fonter

Automatically extract and replace your google fonts.

### Usage

```javascript
import { gFonterVitePlugin } from "@coalaura/gfonter";

export default defineConfig({
plugins: [
...,
gFonterVitePlugin({
whitelist: ["Roboto"], // Will only download and replace Roboto
blacklist: ["Roboto"], // Will download and replace all fonts except Roboto
})
],
...
});
```