After installation of stable Magento 2.0, everything seemed to work fine but not the menus (frontend & backend - menu not clickable).
Further investigation showed 404 error for static/_requirejs/frontend/Magento/luma/en_US/requirejs-config.js file even though the file was there.
My nginx conf file looks like:
server {
listen 80;
server_name magento2.dev;
set $MAGE_ROOT /path/to/magento2;
set $MAGE_MODE developer;
include /path/to/magento2/nginx.conf.sample;
}
Any idea what can be the issue?