Skip to content

Commit

Permalink
feat: add next image docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jarqvi committed Feb 17, 2024
1 parent 8fc74fd commit d47291d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pages/app-deploy/nextjs/tips.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,28 @@ export default () => (
},
}`}
</Highlight>

<p>
همچنین اگر شما از Next Image استفاده می‌کنید باید هاست‌های‌تان را در فایل{" "}
<span className="code">next.config.js</span>
اضافه کنید. برای مثال نمونه کد زیر به تمام هاست‌ها اجازه دسترسی می‌دهد که
شما می‌توانید این مورد به صورت دلخواه تغییر بدید.
</p>
<Highlight className="json">
{`module.exports = {
experimental: {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
},
}`}
</Highlight>

<p>
درنهایت دستور <span className="code">npm run build</span> را اجرا کنید تا
خروجی‌های نهایی در مسیر پیش‌فرض <span className="code">out</span> قرار
Expand Down

0 comments on commit d47291d

Please sign in to comment.