Patch Changes
-
#5398
fda3494215
Thanks @alicanerdurmaz! - fix: Remix v2 requires build path as argument forremix-serve
but Refine CLI was not passing it.
From now on, Refine CLI will pass the build path as argument toremix-serve
command and uses the default./build/index.js
if not provided.You can pass the build path as argument to
refine start
command.// package.json { "scripts": { "start": "refine start ./build/index.js" } }