Vite | エラー解決方法 [ReferenceError] module is not defined in ES module scope This file is being treated as an ES module because it has a ‘.js’ file extension
Vite で build するときに、下記のエラーが発生する場合があります。原因は、下記の通りとなり、解決方法は、すべてのファイル拡張子を「cjs」に変更することで、エラーが発生しなくなります。package.jsonのtypeが"modu...