diff --git a/bun.lock b/bun.lock index 44fcc56..cef3897 100644 --- a/bun.lock +++ b/bun.lock @@ -15,6 +15,7 @@ "vue-router": "^4.6.3", }, "devDependencies": { + "@types/node": "^24.10.1", "sass": "^1.94.0", }, }, @@ -468,6 +469,8 @@ "@types/estree": ["@types/estree@1.0.8", "", {}, "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w=="], + "@types/node": ["@types/node@24.10.1", "", { "dependencies": { "undici-types": "~7.16.0" } }, "sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ=="], + "@types/parse-path": ["@types/parse-path@7.1.0", "", { "dependencies": { "parse-path": "*" } }, "sha512-EULJ8LApcVEPbrfND0cRQqutIOdiIgJ1Mgrhpy755r14xMohPTEpkV/k28SJvuOs9bHRFW8x+KeDAEPiGQPB9Q=="], "@types/resolve": ["@types/resolve@1.20.2", "", {}, "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q=="], @@ -1334,6 +1337,8 @@ "unctx": ["unctx@2.4.1", "", { "dependencies": { "acorn": "^8.14.0", "estree-walker": "^3.0.3", "magic-string": "^0.30.17", "unplugin": "^2.1.0" } }, "sha512-AbaYw0Nm4mK4qjhns67C+kgxR2YWiwlDBPzxrN8h8C6VtAdCgditAY5Dezu3IJy4XVqAnbrXt9oQJvsn3fyozg=="], + "undici-types": ["undici-types@7.16.0", "", {}, "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw=="], + "unenv": ["unenv@2.0.0-rc.24", "", { "dependencies": { "pathe": "^2.0.3" } }, "sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw=="], "unhead": ["unhead@2.0.19", "", { "dependencies": { "hookable": "^5.5.3" } }, "sha512-gEEjkV11Aj+rBnY6wnRfsFtF2RxKOLaPN4i+Gx3UhBxnszvV6ApSNZbGk7WKyy/lErQ6ekPN63qdFL7sa1leow=="], diff --git a/nuxt.config.ts b/nuxt.config.ts index 6413fb5..45957a5 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -14,6 +14,6 @@ export default defineNuxtConfig({ 'pocketbase-nuxt' ], pocketbase: { - url: 'http://localhost:8090' + url: process.env.POCKETBASE_URL }, }) \ No newline at end of file diff --git a/package.json b/package.json index 6b7031d..68cdb8f 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,7 @@ "vue-router": "^4.6.3" }, "devDependencies": { + "@types/node": "^24.10.1", "sass": "^1.94.0" } } diff --git a/tsconfig.json b/tsconfig.json index 307b213..eb7536b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,9 @@ { // https://nuxt.com/docs/guide/concepts/typescript "files": [], + "compilerOptions": { + "types": ["node"] + }, "references": [ { "path": "./.nuxt/tsconfig.app.json"