Your ROOT_URL in app.ini is https://bdgit.educoder.net/ but you are visiting http://bdgit.educoder.net/plf32upqf/CyberLantingAssignments/src/commit/a78360e4677f5d9376d61046239853e8c4520e5c/Assignment2/frontend/todo-list/node_modules/is-inside-container/cli.js You should set ROOT_URL correctly, otherwise the web may not work correctly.

6 lines
149 B

#!/usr/bin/env node
import process from 'node:process';
import isInsideContainer from './index.js';
process.exitCode = isInsideContainer() ? 0 : 2;