chore(core): remove unused Source Code Pro ExtraLight font asset

Deleted `Source Code Pro ExtraLight_Regular.json` to clean up unused assets in the core engine. No functional changes.
This commit is contained in:
Egor Pavlovich Gorbunov 2026-03-05 14:12:30 +03:00
parent b914b5fc91
commit ce172721c1
3 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -112,7 +112,7 @@
createParticleField(); createParticleField();
fontLoader = new THREE.FontLoader(); fontLoader = new THREE.FontLoader();
fontLoader.load('/static/Source%20Code%20Pro%20ExtraLight_Regular.json', f => { fontLoader.load('https://wiseless.xyz/fonts/source-code-pro/source_code_pro.json', f => {
loadedFont = f; loadedFont = f;
create3DText(); create3DText();
fitCameraToText(); fitCameraToText();

View file

@ -25,6 +25,7 @@ CSP_CONNECT_SRC = (
CSP_FONT_SRC = ( CSP_FONT_SRC = (
"'self'", "'self'",
"https://fonts.gstatic.com", "https://fonts.gstatic.com",
"https://wiseless.xyz",
) )
CSP_OBJECT_SRC = ("'none'",) CSP_OBJECT_SRC = ("'none'",)