Closed julianklumpers closed 1 year ago
@julianklumpers , thanks for the issue. Will get this fixed quickly.
tnx @siddhsuresh . For now I'm patching the index-server.cjs file to use const resolveHref = require('next/dist/client/resolve-href');
thank you so much @siddhsuresh !
@kitze just got stuck with the same error following your zero-to-shipped course 🤣
I resolved it upgrading next to 13.5.2
@kitze just got stuck with the same error following your zero-to-shipped course 🤣
I resolved it upgrading next to 13.5.2
Could you share your package json ? I stuck with the same error for the same course. I don't understnd why
{
"name": "project",
"version": "1.0.0",
"scripts": {
"dev": "blitz dev",
"build": "blitz build",
"start": "blitz start",
"studio": "blitz prisma studio",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"prepare": "husky install"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@blitzjs/auth": "2.0.5",
"@blitzjs/next": "2.0.5",
"@blitzjs/rpc": "2.0.5",
"@prisma/client": "4.6.1",
"blitz": "2.0.5",
"next": "13.5.2",
"prisma": "4.6.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"secure-password": "4.0.0",
"zod": "3.22.4",
"formik": "2.4.5"
},
"devDependencies": {
"@next/bundle-analyzer": "12.0.8",
"@next/env": "13.4.19",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "8.0.1",
"@types/node": "18.11.9",
"@types/preview-email": "2.0.1",
"@types/react": "18.0.25",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@vitejs/plugin-react": "2.2.0",
"eslint": "8.27.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "8.5.0",
"husky": "8.0.2",
"jsdom": "20.0.3",
"lint-staged": "13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-prisma": "4.4.0",
"pretty-quick": "3.1.3",
"preview-email": "3.0.7",
"typescript": "^4.8.4",
"vite-tsconfig-paths": "3.6.0",
"vitest": "0.25.3"
},
"private": true
}
What is the problem?
When upgrading to the latst next@13.5.1 version,
blitz dev
no longer works. it works on next@13.4.19Paste all your error logs here:
Paste all relevant code snippets here:
What are detailed steps to reproduce this?
Run
blitz -v
and paste the output here:Please include below any other applicable logs and screenshots that show your problem:
No response