├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── renovate.json ├── src ├── __tests__ │ └── index.test.ts ├── index.ts └── webpack-plugin.ts ├── test-app ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── components │ ├── Layout │ │ ├── Auth.tsx │ │ ├── Body.tsx │ │ ├── Header.tsx │ │ └── index.tsx │ └── Song.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages │ ├── _app.tsx │ ├── api │ │ └── songs.ts │ ├── index.tsx │ ├── songs │ │ └── [id].tsx │ └── ssr-songs │ │ └── [id].tsx ├── prisma │ ├── dev.db │ ├── migrations │ │ ├── 20200917062459-f │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200917063238-dev │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200917063432-dev │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200917063536-dev │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200917063748-dev │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200917070625-dev │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200917070756-dev │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200917070851-dev │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200917071201-dev │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200917071732-dev │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200917071947-dev │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200917072129-dev │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200917072321-dev │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200917072502-dev │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200917072749-dev │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200917091642-dev │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200929054057-dev │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ ├── 20200929063125-dev │ │ │ ├── README.md │ │ │ ├── schema.prisma │ │ │ └── steps.json │ │ └── migrate.lock │ └── schema.prisma ├── tsconfig.json └── yarn.lock ├── tsconfig.json └── yarn.lock /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next 3 | dist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/renovate.json -------------------------------------------------------------------------------- /src/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/src/__tests__/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/webpack-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/src/webpack-plugin.ts -------------------------------------------------------------------------------- /test-app/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/.eslintrc.js -------------------------------------------------------------------------------- /test-app/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | .next 3 | node_modules 4 | .DS_Store 5 | .env 6 | -------------------------------------------------------------------------------- /test-app/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/.prettierrc.js -------------------------------------------------------------------------------- /test-app/components/Layout/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/components/Layout/Auth.tsx -------------------------------------------------------------------------------- /test-app/components/Layout/Body.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/components/Layout/Body.tsx -------------------------------------------------------------------------------- /test-app/components/Layout/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/components/Layout/Header.tsx -------------------------------------------------------------------------------- /test-app/components/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/components/Layout/index.tsx -------------------------------------------------------------------------------- /test-app/components/Song.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/components/Song.tsx -------------------------------------------------------------------------------- /test-app/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/next-env.d.ts -------------------------------------------------------------------------------- /test-app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/next.config.js -------------------------------------------------------------------------------- /test-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/package.json -------------------------------------------------------------------------------- /test-app/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/pages/_app.tsx -------------------------------------------------------------------------------- /test-app/pages/api/songs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/pages/api/songs.ts -------------------------------------------------------------------------------- /test-app/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/pages/index.tsx -------------------------------------------------------------------------------- /test-app/pages/songs/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/pages/songs/[id].tsx -------------------------------------------------------------------------------- /test-app/pages/ssr-songs/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/pages/ssr-songs/[id].tsx -------------------------------------------------------------------------------- /test-app/prisma/dev.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/dev.db -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917062459-f/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917062459-f/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917062459-f/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917062459-f/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917062459-f/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917062459-f/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917063238-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917063238-dev/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917063238-dev/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917063238-dev/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917063238-dev/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917063238-dev/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917063432-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917063432-dev/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917063432-dev/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917063432-dev/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917063432-dev/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917063432-dev/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917063536-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917063536-dev/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917063536-dev/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917063536-dev/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917063536-dev/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917063536-dev/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917063748-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917063748-dev/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917063748-dev/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917063748-dev/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917063748-dev/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917063748-dev/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917070625-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917070625-dev/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917070625-dev/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917070625-dev/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917070625-dev/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917070625-dev/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917070756-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917070756-dev/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917070756-dev/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917070756-dev/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917070756-dev/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917070756-dev/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917070851-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917070851-dev/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917070851-dev/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917070851-dev/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917070851-dev/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917070851-dev/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917071201-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917071201-dev/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917071201-dev/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917071201-dev/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917071201-dev/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917071201-dev/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917071732-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917071732-dev/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917071732-dev/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917071732-dev/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917071732-dev/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917071732-dev/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917071947-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917071947-dev/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917071947-dev/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917071947-dev/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917071947-dev/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917071947-dev/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917072129-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917072129-dev/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917072129-dev/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917072129-dev/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917072129-dev/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917072129-dev/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917072321-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917072321-dev/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917072321-dev/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917072321-dev/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917072321-dev/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917072321-dev/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917072502-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917072502-dev/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917072502-dev/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917072502-dev/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917072502-dev/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917072502-dev/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917072749-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917072749-dev/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917072749-dev/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917072749-dev/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917072749-dev/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917072749-dev/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917091642-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917091642-dev/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917091642-dev/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917091642-dev/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200917091642-dev/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200917091642-dev/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200929054057-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200929054057-dev/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200929054057-dev/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200929054057-dev/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200929054057-dev/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200929054057-dev/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200929063125-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200929063125-dev/README.md -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200929063125-dev/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200929063125-dev/schema.prisma -------------------------------------------------------------------------------- /test-app/prisma/migrations/20200929063125-dev/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/20200929063125-dev/steps.json -------------------------------------------------------------------------------- /test-app/prisma/migrations/migrate.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/migrations/migrate.lock -------------------------------------------------------------------------------- /test-app/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/prisma/schema.prisma -------------------------------------------------------------------------------- /test-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/tsconfig.json -------------------------------------------------------------------------------- /test-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/test-app/yarn.lock -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prisma-labs/next-prisma-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------