diff --git a/Dockerfile b/Dockerfile index 81c075e..e3194c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/panda.config.ts b/panda.config.ts index c17e3ce..8b860e5 100644 --- a/panda.config.ts +++ b/panda.config.ts @@ -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: [],