Skip to content

Commit

Permalink
fix:: DockerFile 실행 전 panda config copy
Browse files Browse the repository at this point in the history
  • Loading branch information
halionaz committed Sep 20, 2024
1 parent e93d6a9 commit 6ebe442
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM node:18-alpine
# 작업 디렉토리 설정
WORKDIR /app

COPY package.json yarn.lock ./
COPY package.json yarn.lock panda.config.ts ./

# KU-key fe에 필요한 패키지 설치
RUN yarn install
Expand Down
2 changes: 1 addition & 1 deletion panda.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default defineConfig({
preflight: true,

// Where to look for your css declarations
include: [`${__dirname}/src/**/*.{js,jsx,ts,tsx}`, `${__dirname}/pages/**/*.{js,jsx,ts,tsx}`],
include: ['./src/**/*.{js,jsx,ts,tsx}', './pages/**/*.{js,jsx,ts,tsx}'],

// Files to exclude
exclude: [],
Expand Down

0 comments on commit 6ebe442

Please sign in to comment.