Hey, after updating next and other packages to the latest ver, im getting a alot of unexpected errors;
Example:
TypeError: Cannot read properties of undefined (reading 'push')
at Utility_append (C:\Projects\StartAppNext\.next\server\chunks\2274.js:149234:15)
at lift (C:\Projects\StartAppNext\.next\server\chunks\2274.js:149295:2)
at C:\Projects\StartAppNext\.next\server\chunks\2274.js:149760:10
at Array.map (<anonymous>)
at Utility_combine (C:\Projects\StartAppNext\.next\server\chunks\2274.js:149243:15)
at Array.prefixer (C:\Projects\StartAppNext\.next\server\chunks\2274.js:149750:14)
at C:\Projects\StartAppNext\.next\server\chunks\2274.js:603:27
at Serializer_serialize (C:\Projects\StartAppNext\.next\server\chunks\2274.js:561:13)
at _stylis (C:\Projects\StartAppNext\.next\server\chunks\2274.js:1439:14)
at getRules (C:\Projects\StartAppNext\.next\server\chunks\2274.js:1449:35)```
My contact page:
import Form from './Form'
const ContactPage = () => {
return (
<div className='min-h-[90vh] bg-slate-200 relative'>
<div className='w-full min-h-full flex justify-center items-center'>
<div className='absolute right-52 top-[12rem] h-[28rem] w-[28rem] blur-[90px] opacity-40 block bg-gradient-to-r from-indigo-500 to-pink-500' />
<div className='absolute left-52 bottom-2 h-[28rem] w-[28rem] blur-[90px] opacity-40 block bg-gradient-to-r from-indigo-500 to-pink-500' />
<div className='bg-white bg-opacity-50 shadow-lg shadow-black/5 flex flex-col py-12 px-8 items-center rounded-2xl w-50 bg-clip-padding backdrop-filter backdrop-blur-3xl border border-gray-200/70 container my-32 h-full'>
<h1 className='text-5xl font-bold duration-300 text-gray-800'>....</h1>
<h4 className='font-medium text-base duration-300 mb-8 mt-2 text-slate-600'>
....
</h4>
<Form />
</div>
</div>
</div>
)
}
export const metadata = {
title: `${process.env.NEXT_PUBLIC_WEBSITE_NAME} | Contact`,
}
export default ContactPage
`app\(main)\contact\page.tsx`
Thanks!