Skip to content

Commit 154f260

Browse files
committed
v0.12.0, fixes #432
1 parent 53cbbf7 commit 154f260

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ app.prepare().then(() => {
5252
},
5353
// (Optional) If your imgproxy instance uses
5454
// the IMGPROXY_SECRET, specify the token here
55-
authToken: '<my-token>'
55+
authToken: '<my-token>',
5656
// (Optional) If you wanna restrict access to specific
5757
// buckets add an array of valid bucket names
5858
bucketWhitelist: ['<my-bucket>'],
@@ -62,9 +62,9 @@ app.prepare().then(() => {
6262
// (Optional) An object containing additional request
6363
// headers that should be sent to the imgproxy endpoint
6464
requestHeaders: {
65-
'My-Header': 'My-Value'
65+
'My-Header': 'My-Value',
6666
// ...
67-
}
67+
},
6868
// (Optional) The logger configuration. If you want additional
6969
// debug output you can adjust the log level.
7070
logging: {
@@ -74,8 +74,8 @@ app.prepare().then(() => {
7474
logger: console,
7575
// (Optional) The log level, must be one of
7676
// 'debug', 'warn' or 'error' (defaults to 'error')
77-
level: 'debug'
78-
}
77+
level: 'debug',
78+
},
7979
},
8080
);
8181
} else {

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bitpatty/next-image-s3-imgproxy-loader",
3-
"version": "0.12.0-rc1",
3+
"version": "0.12.0",
44
"description": "imgproxy S3 extension for next/image",
55
"author": "Matteias Collet <[email protected]>",
66
"homepage": "https://github.com/BitPatty/next-image-s3-imgproxy-loader#readme",

0 commit comments

Comments
 (0)