adrianhajdin / travel_ui_ux

Build and Deploy a Fully Responsive Modern UI/UX Website, React.js, Next.js 13, Tailwind CSS

Home Page:https://camptraveler.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

getting thi error

pratham5368 opened this issue · comments

Remove { output: 'export' } and run "next start" to run server mode including the Image Optimization API. - Configure { images: { unoptimized: true } } in next.config.js to disable the Image Optimization API.
Help Spread DuckDuckGo!
All
Images
Videos
News
Maps
Settings

The Error is fixed @pratham5368 thank you.
The code in next.config.js should look like:

/** @type {import('next').NextConfig} */

const nextConfig = {
  output: 'export',
  images: { unoptimized: true }
}

module.exports = nextConfig

This issue should be marked as resolved, also this seems to be a known runtime issue with this project.