diff --git a/README.md b/README.md index 0971d8a..07e0e94 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ app.prepare().then(() => { }, // (Optional) If your imgproxy instance uses // the IMGPROXY_SECRET, specify the token here - authToken: '' + authToken: '', // (Optional) If you wanna restrict access to specific // buckets add an array of valid bucket names bucketWhitelist: [''], @@ -62,9 +62,9 @@ app.prepare().then(() => { // (Optional) An object containing additional request // headers that should be sent to the imgproxy endpoint requestHeaders: { - 'My-Header': 'My-Value' + 'My-Header': 'My-Value', // ... - } + }, // (Optional) The logger configuration. If you want additional // debug output you can adjust the log level. logging: { @@ -74,8 +74,8 @@ app.prepare().then(() => { logger: console, // (Optional) The log level, must be one of // 'debug', 'warn' or 'error' (defaults to 'error') - level: 'debug' - } + level: 'debug', + }, }, ); } else { diff --git a/package-lock.json b/package-lock.json index 7771a47..f364db8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@bitpatty/next-image-s3-imgproxy-loader", - "version": "0.12.0-rc1", + "version": "0.12.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@bitpatty/next-image-s3-imgproxy-loader", - "version": "0.12.0-rc1", + "version": "0.12.0", "license": "MIT", "dependencies": { "@bitpatty/imgproxy-url-builder": "^1.3.4" diff --git a/package.json b/package.json index 0207bcd..f957432 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bitpatty/next-image-s3-imgproxy-loader", - "version": "0.12.0-rc1", + "version": "0.12.0", "description": "imgproxy S3 extension for next/image", "author": "Matteias Collet ", "homepage": "https://github.com/BitPatty/next-image-s3-imgproxy-loader#readme",