This is a Next.js project bootstrapped with create-next-app
.
Install BuchWeb with npm
cd BuchWeb
npm install
npm run dev
We changed the default Port 3000 (NextJS) to Port 3002, so that the server doesn't run on the same port as the backend.
If you run:
npm run dev
It runs:
next dev -p 3002
Instead of running the server with:
next dev -p 3002
We ran the server with:
next dev --turbo -p 3002
├───.github/
│ └───workflows/
├───.next/
├───node_modules/
├───public/
│ └───book.png
└───src/
├───app/
│ ├───(search)/
│ │ ├───isbn/
│ │ │ ├───loading.tsx
│ │ │ ├───page.module.css
│ │ │ └───page.tsx
│ │ └───titel/
│ │ ├───loading.tsx
│ │ ├───page.module.css
│ │ └───page.tsx
│ ├───books/
│ │ ├───loading.tsx
│ │ ├───page.module.css
│ │ └───page.tsx
│ ├───create/
│ │ ├───loading.tsx
│ │ ├───page.module.css
│ │ ├───page.tsx
│ │ └───CreateBooks.tsx
│ └───notes/
│ ├───page.module.css
│ └───page.tsx
├───favicon.ico
├───global.css
├───layout.tsx
├───login.tsx
├───page.module.css
├───page.tsx
└───SearchBook.tsx
axios.get(`https://localhost:3000/rest/`).then((res) => {
...})