From 7a74972c798c706af51202ef58dff4b0bd010b4a Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Mon, 20 Nov 2023 12:41:43 +0300 Subject: [PATCH] apps/web: fix build (ReferenceError: path is not defined) --- apps/web/next.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web/next.config.js b/apps/web/next.config.js index 2730704..4465f25 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -1,4 +1,5 @@ const fs = require('fs'); +const path = require('path'); const envSchema = require('./config/schema/env'); const urls = require('./constants/urls');