👏
RemixアプリをCLOUDFLAREにデプロイするときにnodeを使いたいなら
compatibility_flags = [ "nodejs_compat" ]
をwrangler.tomlに追加する
wrangler.toml
#:schema node_modules/wrangler/config-schema.json
name = "easy-analyze"
compatibility_date = "2024-05-02"
pages_build_output_dir = "./build/client"
compatibility_flags = [ "nodejs_compat" ]
Discussion