From e71311f21d25bb85bad690be59816f4ea99bb515 Mon Sep 17 00:00:00 2001 From: Igor Guastalla Date: Mon, 31 May 2021 07:40:41 -0300 Subject: [PATCH] docs: add imagekit documentation (#304) --- docs/pages/en/4.providers/imagekit.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docs/pages/en/4.providers/imagekit.md diff --git a/docs/pages/en/4.providers/imagekit.md b/docs/pages/en/4.providers/imagekit.md new file mode 100644 index 000000000..be23881c8 --- /dev/null +++ b/docs/pages/en/4.providers/imagekit.md @@ -0,0 +1,20 @@ +--- +title: ImageKit Provider +description: "Nuxt Image has first class integration with ImageKit" +navigation: + title: ImageKit +--- + +Integration between [ImageKit](https://docs.imagekit.io/) and the image module. + +To use this provider you just need to specify the base url of your service in ImageKit (don't forget to add your [ImageKit ID](https://docs.imagekit.io/integration/url-endpoints#default-url-endpoint)). + +```js{}[nuxt.config.js] +export default { + image: { + imagekit: { + baseURL: 'https://ik.imagekit.io/your_imagekit_id' + } + } +} +```