This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const http = require('http'); | |
| const { URL } = require('url'); | |
| const path = require('path'); | |
| const fs = require('fs'); | |
| const PORT = 8080; | |
| /** Set to a string path relative to the root or to a falsy value to return a plain text message */ | |
| const ERROR_404_DOCUMENT_PATH = null; |