Skip to content

Commit

Permalink
chore: vanilla-extract identifiers 옵션 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ag502 committed Aug 22, 2024
1 parent acf7f3f commit 13f3bf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit 13f3bf4

Please sign in to comment.