From 569bdb8c5d7538fa0ea8a99ff2f8376f7cbfa51a Mon Sep 17 00:00:00 2001 From: piotrruss Date: Mon, 6 Sep 2021 23:13:22 +0200 Subject: added stadard linter --- app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app.js') diff --git a/app.js b/app.js index 70ded1f..37ec8e2 100644 --- a/app.js +++ b/app.js @@ -1,5 +1,5 @@ const { createServer } = require('http') -const { parse } = require('url') +const { URL } = require('url') const next = require('next') const dev = process.env.NODE_ENV !== 'production' @@ -10,7 +10,7 @@ app.prepare().then(() => { createServer((req, res) => { // Be sure to pass `true` as the second argument to `url.parse`. // This tells it to parse the query portion of the URL. - const parsedUrl = parse(req.url, true) + const parsedUrl = new URL(req.url, true) const { pathname, query } = parsedUrl if (pathname === '/a') { -- cgit v1.2.3