© 2026 Hedgehog Software, LLC
Nuxt 3.7.0 with Nitro 2.6.2
// ~/types/shim.d.ts import { S3Client } from '@aws-sdk/client-s3'; declare module 'nitropack' { interface NitroApp { s3: S3Client; } } export default {};
// ~/tsconfig.json { "extends": "./.nuxt/tsconfig.json", "files": ["./types/shim.d.ts"] } // ~/server/tsconfig.json { "extends": "../.nuxt/tsconfig.server.json" }