For the complete documentation index, see llms.txt. This page is also available as Markdown.

Advanced Usage

This page covers the configuration of specific features and advanced functionalities for Next.js.

Configuring 3D Payment Based on Country​

To enable or disable 3D Payment selectively for different countries, set the use_three_d parameter to false in the useCompleteCreditCardPaymentMutation as provided below:

const [completeCreditCardPayment] = useCompleteCreditCardPaymentMutation();

const response = await completeCreditCardPayment({
  ...data,
  use_three_d: false
}).unwrap();

Removing Experimental or Other Options from Next Config​

To remove experimental flags from your next.config.js file, use the following code:

const enhancedConfig = withPzConfig(nextConfig);

// ...

delete enhancedConfig.experimental.serverActions;

Customizing Response in Middleware.ts​

If you use a custom response such as NextResponse.json(), make sure to set the pz-override-response header to true, as provided below. Otherwise, you will get a 404 error.

Last updated

Was this helpful?