| 12345678910111213141516 |
- /** @type {import('next').NextConfig} */
- const nextConfig = {
- // Allow loading images from the API server (Pi IP)
- images: {
- remotePatterns: [],
- },
- // Allow all hosts in dev (for Pi server access)
- eslint: {
- ignoreDuringBuilds: true,
- },
- typescript: {
- ignoreBuildErrors: false,
- },
- }
- module.exports = nextConfig
|