vite-plugin-font
v4.0.0
Published
An automatic Web Font optimization plugin that supports many platforms such as Vite, Next, Nuxt, and more.
Downloads
66,371
Maintainers
Readme
🔠 vite-plugin-font 2.0 ⚡
vite-plugin-font is a font building tool for Webfonts that supports the 中文网字计划 and is optimized for performance and simplicity. It can split large fonts into Webfonts.
We provide both a minimal optimization plan for first-screen optimization and a full optimization plan for large text sites, achieving the ultimate optimization of Chinese fonts in the front-end toolchain.
⚡ Feature
- ⚙️ Automatic CJK (Chinese, Japanese, and Korean) font splitting, with extremely fast on-demand loading speed
- 🚀 Automatically optimize the first screen based on the characters used in the project
- 🔄 Automatically convert fonts to the woff2 format, so you don't have to worry about size issues
- 🌐 Automatically add local adaptation to reduce content displacement accumulation, with SSR support
- 📤 Export font information to support tree shaking optimization
- 🎨 Pure CSS, no runtime data, multi-platform adaptation
- 📦 Automatically reduce the layout offset of Chinese CLS
| Type | Vite, Astro, Qwik | Nuxt | Next | Webpack, Rspack | | --------------------------------------------- | -------------------------- | ------------- | ------------- | --------------------------- | | Full optimization | ✅ | ✅ | ✅ | ✅ | | Minimal optimization | ✅ | ✅ | ✅ | ✅ |
- Full optimization is suitable for blogs and documentation websites that require a large amount of uncertain text. It can achieve full font rendering and has excellent caching performance when used with CDNs.
- Minimal optimization is suitable for scenarios with high rendering requirements, such as official websites and large promotion pages. It collects the characters used in your code and only loads these characters, providing excellent rendering performance.
📦 Install
npm i -D vite-plugin-font
import { css, fontFamilyFallback } from '../demo/public/SmileySans-Oblique.ttf';
document.body.style.fontFamily = `"${css.family}", ` + fontFamilyFallback;
✨ Config
Vite
Almost all frameworks that use Vite as the underlying compilation framework can use
vite-plugin-font
by definingplugins
.
// vite.config.js
import { defineConfig } from 'vite';
import Font from 'vite-plugin-font';
export default defineConfig({
plugins: [Font.vite()],
});
Nuxt
// https://nuxt.com/docs/api/configuration/nuxt-config
import font from 'vite-plugin-font';
export default defineNuxtConfig({
devtools: { enabled: false },
// modules: ["module/nuxt"],
vite: {
plugins: [font.vite({})],
},
compatibilityDate: '2024-10-26',
});
Next
// next.config.mjs
/** @type {import('next').NextConfig} */
const nextConfig = {
webpack: (config, options) => {
config.plugins.push(viteFont.webpack());
return config;
},
};
export default nextConfig;
Webpack
// webpack.config.js or rspack.config.js
const path = require('path');
module.exports = {
plugins: [viteFont.webpack()],
};
🚀 Usage
// Automatically inject CSS to import fonts and support tree shaking optimization of font information!
import { css } from '../../demo/public/SmileySans-Oblique.ttf'; // Directly import font files
console.log(css.family, css.weight); // You can get CSS-related data from here
export const App = () => {
return (
<div
style={{
fontFamily: css.family,
}}
></div>
);
};
Minimal Optimization
Minimal optimization is suitable for scenarios with high rendering requirements, such as official websites and large promotion pages. It collects the characters used in your code and only loads these characters, providing excellent rendering performance.
Add
scanFiles
. The approach of Nuxt and Webpack is slightly different, but both involve adding scan files to the options.
// vite.config.js
import { defineConfig } from 'vite';
import Font from 'vite-plugin-font';
export default defineConfig({
plugins: [
Font.vite({
scanFiles: ['src/**/*.{vue,ts,tsx,js,jsx}'], // add this
}),
],
});
Add
?subsets
to your links.
// Automatically inject CSS to import fonts and support tree shaking optimization of font information!
- import { css } from '../../demo/public/SmileySans-Oblique.ttf';
+ import { css } from '../../demo/public/SmileySans-Oblique.ttf?subsets';
console.log(css.family, css.weight); // You can get CSS-related data from here
export const App = () => {
return (
<div
style={{
fontFamily: css.family,
}}
></div>
);
};
Optimization for individual partitions
Sometimes, we need to package fonts based on different page dimensions, so we can use keys to identify the scope of using scanFiles.
// This will match subset-1
import { css } from '../../demo/public/SmileySans-Oblique.ttf?subsets&key=subset-1';
import { defineConfig } from 'vite';
import Font from 'vite-plugin-font';
export default defineConfig({
plugins: [
Font.vite({
scanFiles: {
// ?subsets will match default
default: ['src/**/*.{json,js,jsx,ts,tsx,vue}'],
'subset-1': ['example/**/*.{json,js,jsx,ts,tsx,vue}'],
},
}),
],
});
Typescript support
The source code includes the src/font.d.ts
file, which you can add to your tsconfig.json
.
{
"compilerOptions": {
"types": ["vite-plugin-font/src/font"]
}
}
Input parameters
See the 中文网字计划 documentation for input parameters. Most parameters are universal.