diff --git a/Frontend/Dockerfile b/Frontend/Dockerfile index 921608b..32bc855 100644 --- a/Frontend/Dockerfile +++ b/Frontend/Dockerfile @@ -30,6 +30,7 @@ RUN chown nextjs:nextjs .next COPY --from=builder --chown=nextjs:nextjs /usr/src/app/node_modules ./node_modules COPY --from=builder --chown=nextjs:nextjs /usr/src/app/.next ./.next COPY --from=builder --chown=nextjs:nextjs /usr/src/app/public ./public +COPY --from=builder --chown=nextjs:nextjs /usr/src/app/docs ./docs COPY --from=builder --chown=nextjs:nextjs /usr/src/app/next.config.mjs ./next.config.mjs COPY --from=builder --chown=nextjs:nextjs /usr/src/app/package.json ./package.json diff --git a/Frontend/tsconfig.json b/Frontend/tsconfig.json index 5daa924..9dc3f85 100644 --- a/Frontend/tsconfig.json +++ b/Frontend/tsconfig.json @@ -29,6 +29,6 @@ "@/configJson": ["./config.json"] } }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "docs/*.{md,mdx}"], + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], "exclude": ["node_modules"] }