You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/1.getting-started.md
+35Lines changed: 35 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,11 @@ Configure Nuxt Cloudinary easily with the `cloudinary` property.
62
62
exportdefault {
63
63
cloudinary: {
64
64
cloudName: 'fesfese4324',
65
+
uploadPreset?: 'my-custom-preset',
66
+
apiKey?: '12345',
67
+
analytics?: true,
68
+
cloud?: {},
69
+
url?: {},
65
70
}
66
71
}
67
72
```
@@ -72,6 +77,36 @@ export default {
72
77
73
78
Your unique Cloudinary Cloud Name. You can find it in the Cloudinary dashboard.
74
79
80
+
### `uploadPreset`
81
+
82
+
- Default: `-`
83
+
84
+
For example: `my-upload-preset`. Used with `CldUploadWidget` and `CldUploadButton` components
85
+
86
+
### `apiKey`
87
+
88
+
- Default: `-`
89
+
90
+
For example: `12345`. Used with `CldMediaLibrary` component.
91
+
92
+
### `analytics`
93
+
94
+
- Default: `true`
95
+
96
+
Enabling Cloudinary analytics.
97
+
98
+
### `cloud`
99
+
100
+
- Default: `-`
101
+
102
+
Top level configuration used for all composables and components. Check out all available options [here](https://cloudinary.com/documentation/cloudinary_sdks#configuration_parameters)
103
+
104
+
### `url`
105
+
106
+
- Default: `-`
107
+
108
+
Top level configuration used for all composables and components. Check out all available options [here](https://cloudinary.com/documentation/cloudinary_sdks#configuration_parameters)
109
+
75
110
## NuxtCloudinary vs Nuxt Image
76
111
77
112
You may be wondering what is the reason to have both Nuxt Cloudinary and Nuxt Image modules if they both have integration with Cloudinary and they tackle the aspect of optimized images.
0 commit comments