react query ftw

This commit is contained in:
2025-08-14 22:46:42 +03:00
parent 78f792578d
commit 502a25fe52
24 changed files with 365 additions and 462 deletions

View File

@@ -1,13 +1,14 @@
import type { NextConfig } from "next";
if (!process.isBun) {
console.error(`You are running this with node. Rerun the process: bun --bun run dev`)
process.exit(1)
console.error(
`You are running this with node. Rerun the process: bun --bun run dev`
);
process.exit(1);
}
process.env.NEXT_PUBLIC_CWD = __dirname || "~"
process.env.NEXT_PUBLIC_ARGV0 = process.argv0 || "node"
process.env.NEXT_PUBLIC_CWD = __dirname || "~";
process.env.NEXT_PUBLIC_ARGV0 = process.argv0 || "node";
const nextConfig: NextConfig = {
/* config options here */