Passenger portal build issues resolution

This commit is contained in:
Stephanos A
2026-06-03 18:12:40 +03:00
committed by Stephanos
parent 9d75a5bc66
commit d80f77b941
5 changed files with 11 additions and 5 deletions

3
.gitignore vendored
View File

@@ -23,3 +23,6 @@ coverage/
.idea/
.vscode/
.npmrc
branch_structure.json
temp_auto_push.bat
temp_interactive_push.bat

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'export',
transpilePackages: ['@edr/types', '@edr/ui-common'],
images: {
unoptimized: true,

View File

@@ -1,7 +1,5 @@
'use client';
export const dynamic = 'force-dynamic';
import { useForm, useFieldArray } from 'react-hook-form';
import { zodResolver } from '@hookform/resolvers/zod';
import { z } from 'zod';

File diff suppressed because one or more lines are too long