Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions .env.sample
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
'.env.development (개발 환경), .env.production (배포 환경)'

NEXT_PUBLIC_BASE_URL=<'server url here'>
NEXT_PUBLIC_CHANNELTALK_PLUGIN_KEY=<'channelTalk plugin key here'>
NEXT_PUBLIC_GA_ID=<'Google Analytics ID here'>
NEXT_PUBLIC_SENTRY_AUTH_TOKEN=<'sentry auth token here'>
NEXT_PUBLIC_SENTRY_DSN=<'sentry dsn here'>
NEXT_PUBLIC_BASE_URL=http://localhost:8080/api
NEXT_PUBLIC_CLIENT_BASE_URL=http://localhost:3000
NEXT_PUBLIC_CHANNELTALK_PLUGIN_KEY=READ_NOTION_PLEASE
NEXT_PUBLIC_GA_ID=G-...
NEXT_PUBLIC_SENTRY_AUTH_TOKEN=sntryu_...
NEXT_PUBLIC_SENTRY_DSN=https://sentry.io/...
3 changes: 3 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ const nextConfig = {
remotePatterns: [
{ protocol: 'https', hostname: 'velog.velcdn.com', pathname: '**' },
{ protocol: 'https', hostname: 'images.velog.io', pathname: '**' },
...(process.env.NODE_ENV === 'development'
? [{ protocol: 'http', hostname: 'localhost', pathname: '**' }]
: []),
],
},
};
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"@sentry/nextjs": "^8.47.0",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-query": "^5.69.0",
"@vercel/og": "^0.8.6",
"chart.js": "^4.4.7",
"chartjs-plugin-datalabels": "^2.2.0",
"holy-loader": "^2.3.13",
Expand Down
Loading
Loading