runtime error
Exit code: 1. Reason: t is a .js file whose nearest parent package.json contains "type": "module" which declares all .js files in that package scope as ES modules. Instead either rename hello.js to end in .cjs, change the requiring code to use dynamic import() which is available in all CommonJS modules, or change "type": "module" to "type": "commonjs" in /app/package.json to treat all .js files as CommonJS (using .mjs for all ES modules instead). at loadPlugins (file:///app/server/server.js:97:23) at file:///app/server/server.js:157:1 { code: 'ERR_REQUIRE_ESM' } Error loading plugin /app/plugins/scraper/web-scraper.js: Error [ERR_REQUIRE_ESM]: require() of ES Module /app/plugins/scraper/web-scraper.js from /app/server/server.js not supported. web-scraper.js is treated as an ES module file as it is a .js file whose nearest parent package.json contains "type": "module" which declares all .js files in that package scope as ES modules. Instead either rename web-scraper.js to end in .cjs, change the requiring code to use dynamic import() which is available in all CommonJS modules, or change "type": "module" to "type": "commonjs" in /app/package.json to treat all .js files as CommonJS (using .mjs for all ES modules instead). at loadPlugins (file:///app/server/server.js:97:23) at file:///app/server/server.js:157:1 { code: 'ERR_REQUIRE_ESM' } node:internal/errors:496 ErrorCaptureStackTrace(err); ^ TypeError [ERR_FEATURE_UNAVAILABLE_ON_PLATFORM]: The feature watch recursively is unavailable on the current platform, which is being used to run Node.js at new NodeError (node:internal/errors:405:5) at Object.watch (node:fs:2414:11) at file:///app/server/server.js:160:4 at ModuleJob.run (node:internal/modules/esm/module_job:195:25) at async ModuleLoader.import (node:internal/modules/esm/loader:337:24) at async loadESM (node:internal/process/esm_loader:34:7) at async handleMainPromise (node:internal/modules/run_main:106:12) { code: 'ERR_FEATURE_UNAVAILABLE_ON_PLATFORM' } Node.js v18.20.8
Container logs:
Fetching error logs...