ganacheのnetworkでsendSignedTransaction を実行すると”Invalid signature v value”のerrorが出る

1.Error
Invalid signature v value

2.環境
(1) netowrk
・ganache v7.1.0 (@ganache/cli: 0.2.0, @ganache/core: 0.2.0)
(2) package
・ganache@7.1.0
・web3@1.7.3

3.ganache default chainId 1337
const transactionObject = {
:
chainId : web3.utils.toHex(1337),
:
}

4.原因
ganacheの起動時のoptionが必要
・ –chain.chainId 1

# ganache --chain.chainId 1

5.参考
https://github.com/trufflesuite/ganache/issues/972