React Compiler を React v18 で利用する
React Compiler がベータリリースされた。
https://react.dev/blog/2024/10/21/react-compiler-beta-release
設定を変更することで React v17 と v18 でも利用可能。
https://react.dev/learn/react-compiler#using-react-compiler-with-react-17-or-18
js
// babel.config.js
const ReactCompilerConfig = {
target: "18", // '17' | '18' | '19'
};
module.exports = function () {
return {
plugins: [["babel-plugin-react-compiler", ReactCompilerConfig]],
};
};