Add image upload to s3

This commit is contained in:
2025-08-02 00:58:40 +02:00
parent 624bb7e124
commit 7d974a857c
8 changed files with 296 additions and 10 deletions
Vendored
+10
View File
@@ -0,0 +1,10 @@
declare module 'nuxt/schema' {
interface RuntimeConfig {
s3Bucket: string;
s3Host: string;
s3AccessKey: string;
s3SecretKey: string;
}
}
// It is always important to ensure you import/export something when augmenting a type
export {};