next.config.js 337 B

12345678910111213141516
  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. // Allow loading images from the API server (Pi IP)
  4. images: {
  5. remotePatterns: [],
  6. },
  7. // Allow all hosts in dev (for Pi server access)
  8. eslint: {
  9. ignoreDuringBuilds: true,
  10. },
  11. typescript: {
  12. ignoreBuildErrors: false,
  13. },
  14. }
  15. module.exports = nextConfig