Description
Verify canary release
- I verified that the issue exists in the latest Next.js canary release
Provide environment information
Operating System:
Platform: darwin
Arch: arm64
Version: Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; root:xnu-8796.121.3~7/RELEASE_ARM64_T6000
Binaries:
Node: 18.17.1
npm: 9.6.7
Yarn: N/A
pnpm: N/A
Relevant Packages:
next: 13.4.20-canary.12
eslint-config-next: 13.4.19
react: 18.2.0
react-dom: 18.2.0
typescript: 5.2.2
Next.js Config:
output: N/A
Which area(s) of Next.js are affected? (leave empty if unsure)
No response
Link to the code that reproduces this issue or a replay of the bug
https://github.com/yanush/nextjs_issue_20230830
To Reproduce
- Create a new nextjs app:
npx create-next-app@latest
Using the following options:
-
TypeScript: No
-
EsLint: Yes
-
Tailwind CSS: No
-
src/ directory: No
-
App Router: Yes
-
import Alias: No
-
Edit package.json and add:
"type": "module",
Edit next.config.js file to match esm:
/** @type {import('next').NextConfig} */
const nextConfig = {}
export default nextConfig;
- try to run project using npm run dev
Describe the Bug
I get these errors:
Warning: React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: object.
Check your code at page.js:19.
Warning: React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: object.
The errors referring to lines that contain Image Tags
Notice:
-
Using the legacy Image works fine (Changing page.js import to:
import Image from 'next/legacy/image'
) -
Changing the project to commonjs also seems to solve the issue
Both of these fixes are not ideal for me
Expected Behavior
Should be working fine with the new image and don't throw errors
Which browser are you using? (if relevant)
No response
How are you deploying your application? (if relevant)
No response