If you deploy a HUGO server traditionally, you might notice that to connect to this, you need to access localhost:1313. And, when trying to connect to the local IP where this is running, it will fail.
To overcome this, you need to deploy and specify the biding like this:
hugo server -v --bind 192.168.1.107
Well, it seems I just learned the difference between using “hugo” and “hugo -D” when generating my content posts.
As the documentation clearly indicates:
-D, --buildDrafts include content marked as draft While - of course - without the “-D” option whatever is set as a “draft” will not create a file !
It is silly and I feel kind of “dahhh, it was obvious Alex…”, but to be honest, all this time I used “hugo -D”.