diff --git a/docs/image.md b/docs/image.md
index 550e56ec4..a0c67b3a9 100644
--- a/docs/image.md
+++ b/docs/image.md
@@ -47,3 +47,29 @@ Generic Image components from [React Native](https://reactnative.dev).
```ComponentPropTable path=primitives,Image,index.tsx showStylingProps=true
```
+
+## Note
+
+### With Next's require statement
+
+When using require statement from next for image keep this in mind.
+
+```jsx
+
+ const img = require('/public/me.jpg');
+
+ // DO ✔
+
+ // DON'T ✘
+
+
+
+```