Initial Paprika Next.js implementation

This commit is contained in:
2026-07-06 12:12:36 -04:00
commit 7d585484a6
38 changed files with 14824 additions and 0 deletions

10
eslint.config.mjs Normal file
View File

@@ -0,0 +1,10 @@
import nextVitals from "eslint-config-next/core-web-vitals";
const config = [
...nextVitals,
{
ignores: [".next/**", "node_modules/**", "lib/legacy-pages.ts"]
}
];
export default config;