Deploying Next.js site

{
  "name": "aksueikava",
  "version": "0.1.0",
  "private": true,
  "scripts": {
    "dev": "next dev",
    "build": "next build",
    "start": "next start",
    "lint": "next lint"
  },

After building ouput I have .next/static, directly I point to cloudflare pages
Build command: pnpm run build 
Build output directory : /.next/static
Root directory: /


All successful, but in one browser the old site, on other browsers - nothing loads
Was this page helpful?