formatting fixes

This commit is contained in:
2026-02-04 18:49:57 +00:00
parent 7fd0055d49
commit 6238d3f0bf
4 changed files with 19 additions and 18 deletions

View File

@@ -1,7 +1,6 @@
@font-face { @font-face {
font-family: "Combat"; font-family: "Combat";
src: url("https://fonts.ob248.com/fonts/Combat.otf") src: url("https://fonts.ob248.com/fonts/Combat.otf") format("opentype");
format("opentype");
font-weight: 80; font-weight: 80;
font-style: normal; font-style: normal;
font-display: swap; font-display: swap;

View File

@@ -1,7 +1,8 @@
@font-face { @font-face {
font-family: "kaeru kaeru"; font-family: "kaeru kaeru";
src: src:
url("https://fonts.ob248.com/fonts/kaerukaeru-Regular.woff2") format("woff2"), url("https://fonts.ob248.com/fonts/kaerukaeru-Regular.woff2")
format("woff2"),
url("https://fonts.ob248.com/fonts/kaerukaeru-Regular.woff") format("woff"); url("https://fonts.ob248.com/fonts/kaerukaeru-Regular.woff") format("woff");
font-weight: 80; font-weight: 80;
font-style: normal; font-style: normal;

View File

@@ -3,8 +3,7 @@
src: src:
url("https://fonts.ob248.com/fonts/VG5000-Regular_web.woff2") url("https://fonts.ob248.com/fonts/VG5000-Regular_web.woff2")
format("woff2"), format("woff2"),
url("https://fonts.ob248.com/fonts/VG5000-Regular_web.woff") url("https://fonts.ob248.com/fonts/VG5000-Regular_web.woff") format("woff");
format("woff");
font-weight: 80; font-weight: 80;
font-style: normal; font-style: normal;
font-display: swap; font-display: swap;

View File

@@ -1,14 +1,16 @@
module.exports = { module.exports = {
apps: [{ apps: [
name: 'fonts', {
script: 'bun', name: "fonts",
args: 'run dev', script: "bun",
interpreter: 'none', args: "run dev",
watch: true, interpreter: "none",
ignore_watch: ['node_modules', 'logs'], watch: true,
env: { ignore_watch: ["node_modules", "logs"],
NODE_ENV: 'development' env: {
}, NODE_ENV: "development",
log_date_format: 'YYYY-MM-DD HH:mm:ss Z' },
}] log_date_format: "YYYY-MM-DD HH:mm:ss Z",
} },
],
};