From 13f3bf4d7ab137b9ca44a28a988d949cf9981dcd Mon Sep 17 00:00:00 2001 From: ag502 Date: Thu, 22 Aug 2024 23:25:52 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20vanilla-extract=20identifiers=20?= =?UTF-8?q?=EC=98=B5=EC=85=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/next.config.js b/apps/web/next.config.js index d887ef2..04e8781 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -6,7 +6,7 @@ const { PHASE_DEVELOPMENT_SERVER } = require("next/constants"); /** @type {import('next').NextConfig} */ module.exports = (phase) => { const withVanillaExtract = createVanillaExtractPlugin({ - identifiers: phase === PHASE_DEVELOPMENT_SERVER ? "short" : "debug", + identifiers: phase === PHASE_DEVELOPMENT_SERVER ? "debug" : "short", }); const nextConfig = {