Skip to content

Instantly share code, notes, and snippets.

@jacksonhardaker
Created October 14, 2021 13:05
Show Gist options
  • Save jacksonhardaker/750dedf3ace4c57050336f9de16a9522 to your computer and use it in GitHub Desktop.
Save jacksonhardaker/750dedf3ace4c57050336f9de16a9522 to your computer and use it in GitHub Desktop.
const presets = ["next/babel"];
const plugins = [];
if (process.env.SERVER_ENV === "production") {
plugins.push([
"react-remove-properties",
{ properties: ["data-testid", /data-cy$/] },
]);
plugins.push(["transform-react-remove-prop-types"]);
}
module.exports = { presets, plugins };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment