mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-22 09:13:18 +03:00
fix: download selfhost fonts script (#6970)
This commit is contained in:
parent
35a6cf655b
commit
b89e088153
@ -3,7 +3,7 @@ import { join } from 'node:path';
|
||||
import { fileURLToPath } from 'node:url';
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-restricted-imports
|
||||
import { CanvasTextFonts } from '@blocksuite/blocks/dist/surface-block/consts.js';
|
||||
import { AffineCanvasTextFonts } from '@blocksuite/blocks/dist/surface-block/consts.js';
|
||||
|
||||
const fontPath = join(
|
||||
fileURLToPath(import.meta.url),
|
||||
@ -17,7 +17,7 @@ const fontPath = join(
|
||||
);
|
||||
|
||||
await Promise.all(
|
||||
CanvasTextFonts.map(async ({ url }) => {
|
||||
AffineCanvasTextFonts.map(async ({ url }) => {
|
||||
const buffer = await fetch(url).then(res =>
|
||||
res.arrayBuffer().then(res => Buffer.from(res))
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user