Compare commits

..

No commits in common. "71a6ea0051807b1702d1b33f68fde822ddd7779b" and "15928158357bc97a6ccbf5e7778fdb4af3d5ea19" have entirely different histories.

5 changed files with 17 additions and 18 deletions

22
package-lock.json generated
View file

@ -1,17 +1,17 @@
{ {
"name": "@firq/fgosite", "name": "@firq/fgosite",
"version": "0.1.14", "version": "0.1.11",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@firq/fgosite", "name": "@firq/fgosite",
"version": "0.1.14", "version": "0.1.11",
"dependencies": { "dependencies": {
"@astrojs/check": "^0.3.3", "@astrojs/check": "^0.3.3",
"@astrojs/sitemap": "^3.0.3", "@astrojs/sitemap": "^3.0.3",
"astro": "^4.0.7", "astro": "^4.0.7",
"iconoir": "^7.2.0", "iconoir": "^6.1.0",
"typescript": "^5.3.3" "typescript": "^5.3.3"
} }
}, },
@ -2706,13 +2706,9 @@
} }
}, },
"node_modules/iconoir": { "node_modules/iconoir": {
"version": "7.2.0", "version": "6.1.0",
"resolved": "https://registry.npmjs.org/iconoir/-/iconoir-7.2.0.tgz", "resolved": "https://registry.npmjs.org/iconoir/-/iconoir-6.1.0.tgz",
"integrity": "sha512-uGaTCzdvQUAfNMDM2yJieGVM2KbW+8/8nkyLVtvXX+79tHQWxgPhpvk9g7rnZcbQuZ/YFAdP+0HB3eAmk+l2qw==", "integrity": "sha512-K8Jrqkp51MdcDBzfiSY2vt9gHsujwEmoOHlWI2Wk++cgVvR1bP+fMLFmwBTPHduZ3aOK95snE6rUmlLPH7Yhnw=="
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/iconoir"
}
}, },
"node_modules/iconv-lite": { "node_modules/iconv-lite": {
"version": "0.4.24", "version": "0.4.24",
@ -8335,9 +8331,9 @@
"integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==" "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ=="
}, },
"iconoir": { "iconoir": {
"version": "7.2.0", "version": "6.1.0",
"resolved": "https://registry.npmjs.org/iconoir/-/iconoir-7.2.0.tgz", "resolved": "https://registry.npmjs.org/iconoir/-/iconoir-6.1.0.tgz",
"integrity": "sha512-uGaTCzdvQUAfNMDM2yJieGVM2KbW+8/8nkyLVtvXX+79tHQWxgPhpvk9g7rnZcbQuZ/YFAdP+0HB3eAmk+l2qw==" "integrity": "sha512-K8Jrqkp51MdcDBzfiSY2vt9gHsujwEmoOHlWI2Wk++cgVvR1bP+fMLFmwBTPHduZ3aOK95snE6rUmlLPH7Yhnw=="
}, },
"iconv-lite": { "iconv-lite": {
"version": "0.4.24", "version": "0.4.24",

View file

@ -1,7 +1,7 @@
{ {
"name": "@firq/fgosite", "name": "@firq/fgosite",
"type": "module", "type": "module",
"version": "0.1.15", "version": "0.1.14",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "astro dev", "dev": "astro dev",
@ -14,7 +14,7 @@
"@astrojs/check": "^0.3.3", "@astrojs/check": "^0.3.3",
"@astrojs/sitemap": "^3.0.3", "@astrojs/sitemap": "^3.0.3",
"astro": "^4.0.7", "astro": "^4.0.7",
"iconoir": "^7.2.0", "iconoir": "^6.1.0",
"typescript": "^5.3.3" "typescript": "^5.3.3"
} }
} }

View file

@ -14,7 +14,7 @@
"source" : "**/*.css", "source" : "**/*.css",
"headers" : [{ "headers" : [{
"key" : "Cache-Control", "key" : "Cache-Control",
"value" : "max-age=31536000" "value" : "max-age=86400"
}] }]
}, },
{ {

View file

@ -3,7 +3,6 @@ import Navbar from '../components/navbar.astro'
import NavbarEntry from '../components/navbarEntry.astro' import NavbarEntry from '../components/navbarEntry.astro'
import navdata from '../../static/data/_navdata.json' import navdata from '../../static/data/_navdata.json'
import embed from '../assets/embed.png' import embed from '../assets/embed.png'
import "iconoir/css/iconoir.css"
export interface Props { export interface Props {
title: string title: string
@ -50,6 +49,10 @@ if (currentpage !== 'home') {
<link rel="icon" type="image/ico" href="/favicon.ico" /> <link rel="icon" type="image/ico" href="/favicon.ico" />
<link rel="sitemap" href="/sitemap-index.xml" /> <link rel="sitemap" href="/sitemap-index.xml" />
<link href="https://mastodon.neshweb.net/@Firq" rel="me" /> <link href="https://mastodon.neshweb.net/@Firq" rel="me" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/iconoir-icons/iconoir@main/css/iconoir.css"
/>
</head> </head>
<body> <body>
<Navbar> <Navbar>

View file

@ -3,7 +3,7 @@ export default {
args: ["--no-sandbox", "--disable-setuid-sandbox"], args: ["--no-sandbox", "--disable-setuid-sandbox"],
}, },
ci: { ci: {
budget: 50, budget: 90,
buildStatic: true buildStatic: true
}, },
outputPath: "unlighthouse-reports", outputPath: "unlighthouse-reports",