Add s3 endpoint as preload

This commit is contained in:
2025-08-02 01:18:37 +02:00
parent 7d974a857c
commit facb07de5b
5 changed files with 19 additions and 8 deletions
Vendored
+4 -2
View File
@@ -1,10 +1,12 @@
declare module 'nuxt/schema' {
interface RuntimeConfig {
s3Bucket: string;
s3Host: string;
s3AccessKey: string;
s3SecretKey: string;
}
interface PublicRuntimeConfig {
s3Bucket: string;
s3Host: string;
}
}
// It is always important to ensure you import/export something when augmenting a type
export {};