//pages/index.js
import Head from "next/head";
import styles from "../styles/Home.module.css";
export default function Home() {
return (
<div className={styles.container}>
<Head>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</Head>
</div>
);
}
I just created 'npx create-next-app@latest blog-app' and try to build(next build) the application but I got error "/ /400 /500 /_error: /404". I'm using 12.2.2 next version and 16.13.2 node version. I also try to build with 14.16.0 node version but got same issue.