| /** @type {import('next').NextConfig} */ | |
| const nextConfig = { | |
| output: 'export', | |
| trailingSlash: true, | |
| images: { | |
| unoptimized: true | |
| }, | |
| eslint: { | |
| ignoreDuringBuilds: true, | |
| }, | |
| typescript: { | |
| ignoreBuildErrors: true, | |
| }, | |
| // Ensure proper routing for static export | |
| generateBuildId: async () => { | |
| return 'seta-smart-inventory-build' | |
| }, | |
| } | |
| export default nextConfig | |