next.js/test/e2e/swc-plugins/next.config.js
next.config.js14 lines246 B
/** @type {import('next').NextConfig} */
module.exports = {
  experimental: {
    swcPlugins: [
      [
        '@swc/plugin-react-remove-properties',
        {
          properties: ['^data-custom-attribute$'],
        },
      ],
    ],
  },
}
Quest for Codev2.0.0
/
SIGN IN