diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..c5f06ef --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1 @@ +{"image":"mcr.microsoft.com/devcontainers/universal:2","features":{"ghcr.io/rails/devcontainer/features/activestorage":"1"}} \ No newline at end of file diff --git a/.gitignore b/.gitignore index ee27aa9..d79ef28 100644 --- a/.gitignore +++ b/.gitignore @@ -39,6 +39,7 @@ build/Release # Dependency directories node_modules/ +package-lock.json jspm_packages/ # Snowpack dependency directory (https://snowpack.dev/) diff --git a/next-env.d.ts b/next-env.d.ts index 7996d35..1970904 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -1,6 +1,6 @@ /// /// -import "./.next/dev/types/routes.d.ts"; +import "./.next/types/routes.d.ts"; // NOTE: This file should not be edited // see https://nextjs.org/docs/pages/api-reference/config/typescript for more information. diff --git a/package.json b/package.json index ba6fa6d..8f87bcf 100644 --- a/package.json +++ b/package.json @@ -6,12 +6,13 @@ "dev": "next dev --turbopack", "build": "next build", "start": "next start", - "lint": "next lint" + "lint": "next lint", + "bash-version": "bash --version" }, "dependencies": { "@tailwindcss/postcss": "4.1.11", "@vercel/analytics": "^1.5.0", - "next": "16.1.0", + "next": "16.1.6", "react": "19.2.3", "react-dom": "19.2.3", "tailwindcss": "4.1.11" @@ -24,4 +25,4 @@ "typescript": "5" }, "packageManager": "pnpm@9.15.1+sha256.9e534e70afef06374f6126b44bda5760947135ce16a30aef1010e965fb7e3e3e" -} +} \ No newline at end of file diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..f869667 --- /dev/null +++ b/vercel.json @@ -0,0 +1 @@ +{"$schema":"https://openapi.vercel.sh/vercel.json","github":{"enabled":true}} \ No newline at end of file