Open Issues Need Help
View All on GitHubAI Summary: The task requires modifying the `next.config.ts` file of a Next.js application to allow embedding within an iframe. Specifically, the `X-Frame-Options` header needs to be changed from `DENY` to either `SAMEORIGIN` or a more permissive value to enable the application to be displayed within the Crowdin platform.
AI Summary: Correct the `manifest.json` file in the Crowdin Apps Quick Start Next.js project by prefixing the `installed` and `uninstall` event handlers with `/api`. This involves modifying the `route.ts` file responsible for generating the manifest.
AI Summary: The task involves removing unnecessary files and code from a Next.js Crowdin app template. Specifically, the `structuredData` prop in the `Home` component, the `robots.ts` file, and the `sitemap.ts` file should be deleted because they are not required for a basic Crowdin app and add unnecessary complexity.
AI Summary: The task is to add a `.env.example` file to the Crowdin Apps Quick Start Next.js project repository. This file should contain example environment variables needed for the application to run locally and be deployed to Vercel. The example variables should include placeholders for Crowdin OAuth credentials, database connection details, and other necessary settings.
AI Summary: Correct a typo in the Prisma schema file by changing the field name 'appSecrect' to 'appSecret'. This involves modifying the schema.prisma file and potentially running prisma migrations to update the database.