Hello folks! welcome back to a new section of our tutorial on Next.js. In this section of our tutorial on Next.js, we will be discussing about Next.js Static File Serving.
In Next.js, we can serve static page such as images very easily by putting them in public, a top level directory. We can refer these files in similar way like pages in pages directory.
In Next.js, a page is a React component and are exported from the pages directory. Each page is associated with a route based on its file name.
Now let us update the nextjs project used in Next.js Pages tutorial.
Create a public directory and put any image within it. For the purpose of this tutorial, we have utilized logo.jpeg, WebDesignTutorialz Logo image.
Update first.js with the following content -
In Next.js, we can serve static page such as images very easily by putting them in public, a top level directory. We can refer these files in similar way like pages in pages directory.
In Next.js, a page is a React component and are exported from the pages directory. Each page is associated with a route based on its file name.
Now let us update the nextjs project used in Next.js Pages tutorial.
Create a public directory and put any image within it. For the purpose of this tutorial, we have utilized logo.jpeg, WebDesignTutorialz Logo image.
Update first.js with the following content -
import Link from 'next/link' export default function FirstPost() { return ( <> <h1>My First Post</h1> <h2> <Link href="/"> <a>Home</a> </Link> </h2> <br/"> <img src="/logo.jpeg" alt="WebDesignTutorialz Logo" /> </> ) }
Here we've added a reference to logo.jpeg in index.js file.
READ: Next.js | Pages
Start Next.js Server
Run the following command below to start the server -
npm run dev > nextjs@1.0.0 dev \Node\nextjs > next ready - started server on http://localhost:3000 event - compiled successfully event - build page: / wait - compiling... event - compiled successfully event - build page: /next/dist/pages/_error wait - compiling... event - compiled successfully
Output
Open localhost:3000 in any browser of your choice to see the following result -
Alright guys! This is where we are going to be rounding up for this tutorial. In our next tutorial, we are going to be studying about Next.js Meta Data.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.