mirror of
https://github.com/complexcaresolutions/frontend.blogwoman.de.git
synced 2026-03-17 16:14:00 +00:00
fix: remove escaped characters from server.js
Fix bash-escaped \! in !== operator that caused SyntaxError. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
3c215d6474
commit
44ee0cceb7
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ const { parse } = require("url")
|
||||||
const next = require("next")
|
const next = require("next")
|
||||||
|
|
||||||
const port = parseInt(process.env.PORT || "3000", 10)
|
const port = parseInt(process.env.PORT || "3000", 10)
|
||||||
const dev = process.env.NODE_ENV \!== "production"
|
const dev = process.env.NODE_ENV !== "production"
|
||||||
const app = next({ dev })
|
const app = next({ dev })
|
||||||
const handle = app.getRequestHandler()
|
const handle = app.getRequestHandler()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue