Open
Description
When I run
docker compose up -d --build
I encounter an error at the line:
COPY --from=builder --chown=refine:nodejs /app/refine/.next/standalone ./
The folder .next/standalone does not exist.
To fix this, I made the following change in the next.config.mjs file:
const nextConfig = {
output: 'standalone'
};
Perhaps you could provide an update to the file or check if there are additional steps needed to ensure the standalone folder is correctly generated during the build process.
and dont forget to create public folder before build
Activity