diff --git a/.gitignore b/.gitignore index 2362c80..4fe758d 100644 --- a/.gitignore +++ b/.gitignore @@ -57,4 +57,10 @@ temp-*.sh # Lambda packages lambda/*.zip -lambda/**/node_modules/ \ No newline at end of file +lambda/**/node_modules/ + +# MCP config (local dev tooling) +.mcp.json + +# Images/screenshots +*.png \ No newline at end of file diff --git a/amplify.yml b/amplify.yml deleted file mode 100644 index c00a95b..0000000 --- a/amplify.yml +++ /dev/null @@ -1,18 +0,0 @@ -version: 1 -frontend: - phases: - preBuild: - commands: - - npm ci - - npm run security:check - build: - commands: - - npm run build - artifacts: - baseDirectory: out - files: - - '**/*' - cache: - paths: - - node_modules/**/* - - .next/cache/**/* \ No newline at end of file diff --git a/next-env.d.ts b/next-env.d.ts index 1b3be08..830fb59 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -1,5 +1,6 @@ /// /// +/// // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.