@@ -9,7 +9,7 @@ version: 1.1
99To configure the builder globally, you can use ` setConfig() ` method:
1010
1111``` js
12- import { setConfig } from ' cloudinary-builder -url'
12+ import { setConfig } from ' cloudinary-build -url'
1313
1414setConfig ({
1515 cloudName: ' your-cloud-name' ,
@@ -19,7 +19,7 @@ setConfig({
1919To configure the builder per url generation call, you can use ` cloud ` field of ` options ` parameter of that call.
2020
2121``` js
22- import { buildImageUrl } from ' cloudinary-builder -url'
22+ import { buildImageUrl } from ' cloudinary-build -url'
2323
2424const src = buildImageUrl (' public-id' , {
2525 cloud: {
@@ -40,7 +40,7 @@ const src = buildImageUrl('public-id', {
4040The cloud name associated with your Cloudinary account. It is used to configure and enable Cloudinary features such as generating delivery asset URL.
4141
4242``` js
43- import { setConfig } from ' cloudinary-builder -url'
43+ import { setConfig } from ' cloudinary-build -url'
4444
4545setConfig ({
4646 cloudName: ' your-cloud-name' ,
@@ -65,7 +65,7 @@ Force secure HTTPS delivery urls for all assets (images + videos) generated by C
6565Disable this flag to have all delivery urls built with HTTP protocol instead.
6666
6767``` js
68- import { setConfig } from ' cloudinary-builder -url'
68+ import { setConfig } from ' cloudinary-build -url'
6969
7070setConfig ({
7171 secure: false
@@ -80,7 +80,7 @@ setConfig({
8080Set custom domain name for building ** secure HTTPS** urls.
8181
8282``` js
83- import { setConfig } from ' cloudinary-builder -url'
83+ import { setConfig } from ' cloudinary-build -url'
8484
8585setConfig ({
8686 secureDistribution: ' your-custome-domain-name'
@@ -101,7 +101,7 @@ Only relevant if you are Advanced plan Cloudinary user with private CDN distribu
101101Set custom domain name for building ** non-secure HTTP** urls.
102102
103103``` js
104- import { setConfig } from ' cloudinary-builder -url'
104+ import { setConfig } from ' cloudinary-build -url'
105105
106106setConfig ({
107107 cname: ' your-custome-domain-name'
@@ -122,7 +122,7 @@ Only relevant if you are Advanced plan Cloudinary user with private CDN distribu
122122Set to ` true ` if you'd like to use private CDN distribution.
123123
124124``` js
125- import { setConfig } from ' cloudinary-builder -url'
125+ import { setConfig } from ' cloudinary-build -url'
126126
127127setConfig ({
128128 privateCDN: true
@@ -148,7 +148,7 @@ Below are the configuration options to apply to assets specifically (images and
148148The storage and delivery type of asset in Cloudinary.
149149
150150``` js
151- import { setConfig } from ' cloudinary-builder -url'
151+ import { setConfig } from ' cloudinary-build -url'
152152import { STORAGE_TYPES } from ' @cld-apis/utils'
153153
154154setConfig ({
@@ -171,7 +171,7 @@ setConfig({
171171Type of the asset(s)
172172
173173``` js
174- import { setConfig } from ' cloudinary-builder -url'
174+ import { setConfig } from ' cloudinary-build -url'
175175import { RESOURCE_TYPES } from ' @cld-apis/utils'
176176
177177setConfig ({
@@ -195,7 +195,7 @@ The timestamp of uploaded asset. If there is no version indicated, a previously
195195It's ** only relevant** to uploaded asset to Cloudinary.
196196
197197``` js
198- import { setConfig } from ' cloudinary-builder -url'
198+ import { setConfig } from ' cloudinary-build -url'
199199
200200setConfig ({
201201 version: 1312461204
@@ -216,7 +216,7 @@ To use `version`, you need to have `forceVersion` enabled.
216216To enable applying version on asset whenever possible. It's ** only relevant** to uploaded asset to Cloudinary.
217217
218218``` js
219- import { setConfig } from ' cloudinary-builder -url'
219+ import { setConfig } from ' cloudinary-build -url'
220220
221221setConfig ({
222222 forceVersion: true
@@ -230,7 +230,7 @@ setConfig({
230230A string includes all the components of the delivery URL that will come after the signature component.
231231
232232``` js
233- import { setConfig } from ' cloudinary-builder -url'
233+ import { setConfig } from ' cloudinary-build -url'
234234
235235setConfig ({
236236 signature: ' my-signature'
0 commit comments