diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 000000000..975bc493d --- /dev/null +++ b/.dockerignore @@ -0,0 +1,37 @@ +# Git +.git +.gitignore + +# Dependencies +node_modules +**/node_modules + +# Build outputs +.next +**/dist +build +out + +# Local env files +.env +.env.local +.env.*.local + +# IDEs and editors +.vscode +.idea +.cursor +*.swp +*.swo + +# Project specific +.eslintcache +.npmrc +AGENTS.md +docs +deployment +services/app/Dockerfile + +# OS files +.DS_Store +Thumbs.db diff --git a/apps/web/graphql/pages/page-templates.ts b/apps/web/graphql/pages/page-templates.ts index 2a3aecb1d..8b88893ae 100644 --- a/apps/web/graphql/pages/page-templates.ts +++ b/apps/web/graphql/pages/page-templates.ts @@ -197,9 +197,9 @@ export const homePageTemplate = [ mimeType: "image/jpeg", size: 113901, access: "public", - file: "https://d27g932tzd9f7s.cloudfront.net/medialit-service/public/dM3L-CVOXLGv3XxsnRUd_D3SD-S5hCkuTzTx432L/main.jpg", + file: "https://cdn.medialit.cloud/medialit-service/p/dM3L-CVOXLGv3XxsnRUd_D3SD-S5hCkuTzTx432L/main.jpg", thumbnail: - "https://d27g932tzd9f7s.cloudfront.net/medialit-service/public/dM3L-CVOXLGv3XxsnRUd_D3SD-S5hCkuTzTx432L/thumb.webp", + "https://cdn.medialit.cloud/medialit-service/p/dM3L-CVOXLGv3XxsnRUd_D3SD-S5hCkuTzTx432L/thumb.webp", caption: "", }, mediaRadius: 2, diff --git a/apps/web/next-env.d.ts b/apps/web/next-env.d.ts index 9edff1c7c..c4b7818fb 100644 --- a/apps/web/next-env.d.ts +++ b/apps/web/next-env.d.ts @@ -1,6 +1,6 @@ /// /// -import "./.next/types/routes.d.ts"; +import "./.next/dev/types/routes.d.ts"; // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information. diff --git a/services/app/.dockerignore b/services/app/.dockerignore deleted file mode 100644 index 7eaaafb3f..000000000 --- a/services/app/.dockerignore +++ /dev/null @@ -1,3 +0,0 @@ -node_modules -.env -.env.loca \ No newline at end of file