Files
nashel-frontend/build_output.txt
T

32 lines
2.9 KiB
Plaintext


> nashel-frontend@0.1.0 build
> next build
▲ Next.js 15.1.0
- Environments: .env.local
Creating an optimized production build ...
✓ Compiled successfully
Linting and checking validity of types ...
node.exe : Failed to compile.
C:\Program Files\nodejs\npm.ps1:29 знак:3
+ & $NODE_EXE $NPM_CLI_JS $args
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (Failed to compile.:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
./src/app/dashboard/become-performer/page.tsx:26:27
Type error: Expected 2-3 arguments, but got 1.
  24 | workSchedule: z.object({
  25 | isAlwaysReady: z.boolean(),
> 26 | schedulePerDay: z.record(z.array(z.
[39mobject({
  | ^
  27 | start: z.string().regex(/^([01]?[0-9]|2[0-3]):[0-5]
[0-9]$/, 'Неверный формат времени').optional(),
  28 | end: z.string().regex(/^([01]?[0-9]|2[0-3]):[0-5][0
-9]$/, 'Неверный формат времени').optional(),
  29 | }))),