Error Loading Module './manage' in NodeBB Theme – Need Help Debugging
Technical Support
1
Indlæg
1
Posters
24
Visninger
-
I’m encountering an error when trying to load manage.js in my NodeBB theme. The error message says:
error loading forum/manage
Error: Cannot find module ‘./manage’
Directory Structure & Code:
nodebb-theme-mine
├── client
│ └── manage.js
├── plugin.json
└── templates
└── manage.tplCode Snippets:
- client/manage.js
define(‘forum/community-manage’, [‘bootbox’], function (bootbox) {
// …
}); - plugin.json(partial):
“modules”: {
“…/admin/plugins/harmony.js”: “public/admin.js”,
“…/client/account/theme.js”: “public/settings.js”,
“forum/community-manage”: “client/manage.js”
}
What I’ve Tried:
• Verified the file client/manage.js exists.
• Checked plugin.json syntax and module mappings.
Questions:
• Why is NodeBB unable to resolve ./manage when the module is defined in plugin.json?
• Could this be a path resolution issue or a problem with the AMD module syntax (define)?
Any help or pointers would be greatly appreciated!
- client/manage.js
-
System shared this topic on