Series of small fixes (#346)

* migrate bufbuild config to v2

* fix localdir lookup

* fix old oidc redirect path

* rework twemoji path stuff

* fix torrential cmd

* fix broken lock file

* align dev server port with nginx

* bump pnpm

* bump nuxt

* make translations lazy loaded

* format numbers via i18n

* fix prisma breaking if extension already exists
This commit is contained in:
Husky
2026-02-09 11:27:31 -05:00
committed by GitHub
parent ca845467e1
commit f8447808dd
12 changed files with 1183 additions and 2957 deletions
+2
View File
@@ -31,6 +31,8 @@ export function getFolderSize(folderPath: string): number {
}
export function formatBytes(bytes: number): string {
// TODO: use i18n formatting https://vue-i18n.intlify.dev/guide/essentials/number.html
if (bytes < 1024) {
return `${bytes} B`;
}