travel_ui_ux
travel_ui_ux copied to clipboard
getting thi error
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.