stx-chris

Results 6 comments of stx-chris

thx @yakubovmax213 for your reply! Will try

Just recently found the reason why Next.js was giving us this error. It was due to Next trying to convert our local `.webp` images into `.avif` format for Mac browsers....

Do you import local files as recommended in the [docs](https://nextjs.org/docs/pages/building-your-application/optimizing/images#local-images) using `import` statements or do you use a relative path to some folder in the `src` property? Because switching from...

ok, can you try the following instead? ``` // the relative path might need adjustment according to your file location import heroImage1 from "/images/hero-image1.webp"; ``` Not sure in which version...

@Niels-IO Have you considered [jsSHA](https://github.com/Caligatio/jsSHA)? It allows loading individual algorithms to keep the bundle size low.

Sure: 1. Install latest next.js (13.5.3 and above) 2. add a react-component using `import { Workbook } from "exceljs"` 3. call `const workbook = new Workbook();` 4. Make sure it...