Volodymyr Hutovskyi

Results 3 comments of Volodymyr Hutovskyi

How I solve this problem with multer: ``` typescript ////////////////// image-multer-options.ts const imageFilter = (req: Request, file: Express.Multer.File, callback: (error: Error, acceptFile: boolean) => void) => { if (!Boolean(file.mimetype.match(/(jpg|jpeg|png|gif)/))) callback(null,...

I added `width: 100vw` to `position: fixed` and `height: 100vh` and it works perfectly 🥳 ```tsx function App() { return ( {[...Array(300).fill(0)].map((value, index) => ( {value + index} ))} );...