@lagless/dev-player 0.0.46 → 0.0.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -69,7 +69,7 @@ function serveIndex() {
69
69
 
70
70
  const server = createServer((req, res) => {
71
71
  const url = new URL(req.url, `http://localhost:${port}`);
72
- let filePath = join(DIST_DIR, url.pathname);
72
+ const filePath = join(DIST_DIR, url.pathname);
73
73
 
74
74
  // Try to serve static file
75
75
  if (url.pathname !== '/' && existsSync(filePath)) {