@autiomaa I run this on a local machine to verify my changes are working as expected.
```#!/usr/bin/env python3
import http.server
from http.server import HTTPServer, BaseHTTPRequestHandler
import socketserver
PORT = 8080
Handler = http.server.SimpleHTTPRequestHandler
Handler.extensions_map={
'.css': 'text/css',
'.html': 'text/html',
'': 'text/html', # Default is 'application/octet-stream'
}
httpd = socketserver.TCPServer(("", PORT), Handler)
print("serving at port", PORT)
httpd.serve_forever()
```