@PitaJ Thanks. I was seeing the same "Error: Cannot find module '@babel/runtime/core-js/object/create'" issue and deleting my node_modules directory and then running
npm install ./nodebb setupsolved the problem for me.
I just recently installed NodeBB on an Ubuntu 18.04 VPS.
My configuration is below,
{
"url": "http://161.35.48.102:4567",
"secret": "#",
"database": "redis",
"port": "4567",
"redis": {
"host": "127.0.0.1",
"port": 6379,
"password": "#",
"database": 0
}
}
Here is what I'm seeing,
I was originally running the site with Nginx and a reverse proxy, but after having these issues I stopped Nginx and updated the configuration to try and see if Nginx was the issue.
When I use Ctrl-F5 (or just F5) to reload the page everything shows up as working properly, but when I use the navbar to navigate the website I experience the issue you see above. Using inspect element the style tags appear to be empty. Also, when I log into my account the pages show as completely empty.
I've never experienced this issue before. I'm wondering if this is a filesystem permission issue. At this point I don't know what to do.
Any ideas?