How to serve static files with core Nodejs(not using any framework). Also, Indicate a public folder as static folder like express middleware.
   express.static(root, [options])
In my code, static files are working/serving with local development, but not working/serving some static files like .css/fonts over the https on deployment.
