Hugo site displaying different content for .com domain vs. .app domain

Hi @njpangakis

Have you looked at the console in developer tools ?

The issue is caused by the fact all resources are loading from npangakis.netlify.com (which is now npangakis.netlify.app see: Changes coming to Netlify site URLs: .com to .app)

<link rel="stylesheet" href="https://npangakis.netlify.com/css/main.css">
<link rel="stylesheet" href="https://npangakis.netlify.com/css/rad-icons.css">
<link rel="stylesheet" href="https://npangakis.netlify.com/css/custom.css">

The reason this is happening is because of the baseURL in the config.yml

baseURL: https://npangakis.netlify.com/

Remove this, or change the value to / and this issue should disappear.