Skip to content

pantoken / bundlers/next/src / withPantoken

دالة: withPantoken()

withPantoken(nextConfig?, options?): NextConfigLike

تجريبي

غلف تكوين Next.js بحيث يتم تحويل حزم Instructure UI.

المعلمات

nextConfig?

NextConfigLike = {}

تكوين Next الحالي (الافتراضي {}).

options?

WithPantokenOptions = {}

WithPantokenOptions.

القيم المرجعة

NextConfigLike

التكوين المُعزّز.

أمثلة

غلف ملف next.config.mjs الخاص بك

js
import { withPantoken } from "@pantoken/next";

export default withPantoken({ reactStrictMode: true });

حوّل حزم InstUI الإضافية

js
import { withPantoken } from "@pantoken/next";

export default withPantoken(
  { reactStrictMode: true },
  { transpile: ["@instructure/ui-modal"] },
);