Move fonts into folder

This commit is contained in:
Daniel Imms
2026-01-03 15:33:13 -08:00
parent a35223a819
commit 0e57643f16
5 changed files with 3 additions and 4 deletions
@@ -24,7 +24,7 @@ export class AddonWebFontsWindow extends BaseWindow implements IControlWindow {
btnKongtext.textContent = 'Load Kongtext';
btnKongtext.title = 'Load Kongtext font and apply C64 style';
btnKongtext.addEventListener('click', async () => {
const ff = new FontFace('Kongtext', 'url(/kongtext.regular.ttf) format(\'truetype\')');
const ff = new FontFace('Kongtext', 'url(/fonts/kongtext.regular.ttf) format(\'truetype\')');
await loadFonts([ff]);
this._terminal.options.fontFamily = 'Kongtext';
this._terminal.options.lineHeight = 1.3;
@@ -45,7 +45,7 @@ export class AddonWebFontsWindow extends BaseWindow implements IControlWindow {
btnBpdots.textContent = 'Load BPdots';
btnBpdots.title = 'Load BPdots font';
btnBpdots.addEventListener('click', async () => {
document.styleSheets[0].insertRule('@font-face { font-family: "BPdots"; src: url(/bpdots.regular.otf) format("opentype"); weight: 400 }', 0);
document.styleSheets[0].insertRule('@font-face { font-family: "BPdots"; src: url(/fonts/bpdots.regular.otf) format("opentype"); weight: 400 }', 0);
await loadFonts(['BPdots']);
this._terminal.options.fontFamily = 'BPdots';
this._terminal.options.lineHeight = 1.3;
+1 -2
View File
@@ -45,8 +45,7 @@ function startServer(): void {
res.sendFile(demoRoot + '/index.css');
});
app.get('/kongtext.regular.ttf', (req, res) => res.sendFile(demoRoot + '/kongtext.regular.ttf'));
app.get('/bpdots.regular.otf', (req, res) => res.sendFile(demoRoot + '/bpdots.regular.otf'));
app.use('/fonts', express.static(demoRoot + '/fonts'));
app.use('/dist', express.static(demoRoot + '/dist'));
app.use('/src', express.static(demoRoot + '/src'));