fix: selfhost build (#5833)

This commit is contained in:
LongYinan 2024-02-19 14:03:26 +00:00
parent d665eaec34
commit 28ee66173e
No known key found for this signature in database
GPG Key ID: 30B1140CE1C07C99

View File

@ -3,7 +3,7 @@ import { join } from 'node:path';
import { fileURLToPath } from 'node:url';
// eslint-disable-next-line @typescript-eslint/no-restricted-imports
import { DEFAULT_CANVAS_TEXT_FONT_CONFIG } from '@blocksuite/blocks/dist/surface-block/consts.js';
import { CanvasTextFonts } 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(
DEFAULT_CANVAS_TEXT_FONT_CONFIG.map(async ({ url }) => {
CanvasTextFonts.map(async ({ url }) => {
const buffer = await fetch(url).then(res =>
res.arrayBuffer().then(res => Buffer.from(res))
);