2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

[Next.js 13] ビルド時に特定のカスタムデータ属性を表示させない方法

Posted at

はじめに

テスト用に設定しているdata-testidを本番環境で表示させない方法を調査した結果、便利な設定を見つけました。

TL;DR

Next.js Config内のcompiler.reactRemovePropertiesを設定することで、
data-testidのようなカスタムデータ属性を削除することができます。

// next.config.js
const nextConfig = {
// ...その他の設定
    compiler: {
      reactRemoveProperties: {
        properties: ['^data-testid$'],
      },
    },
}

本番環境でのみ有効化する場合

compilerの設定が開発環境に作用してしまっていたので、
compilerごと条件分岐での有効化をさせています。

// next.config.js
const nextConfig = {
// ...その他の設定
...(process.env.NODE_ENV === 'production' && {
    compiler: {
      reactRemoveProperties: {
        properties: ['^data-testid$'],
      },
    },
  }),

参考文献

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?