Tim Heerwagen

Results 14 comments of Tim Heerwagen

> If you delete `loadLocaleFrom`, does it work? By default underneath it makes an identical dynamic import. Looks like an error of the new [nextcompiler](https://nextjs.org/docs/advanced-features/compiler)... Something to investigate. Thanks to...

Without the tag it works. passHref has not changed anything Solution: ``` ``` ``` "test": "stuff more stuff" ```

It looks like the plugin is no longer being developed. Does anyone know an alternative?

From one day to the next i had the same Issue in 1.1.6 without changing something -> upgraded to 1.2.3 but it remains. `ERROR failed to calculate global hash: error...

> I'm having a similar if not the same issue. > > After upgrading to 13.4.4 I'm getting the error `Error: Filesystem cache is not enabled, cannot read plugin from...

@NicoloPano Since Next 13, you no longer need an anchor tag as the child of a link, as a link now works like an anchor.

I would prefer a list of icons for each category, because one place to import an icon is enough in my opinion. ```ts import { categoryList } from "@tabler-icons/react" ```...

Here is my attempt: (Optional: get a list of all available icons) Then Display the icon by its name. ```tsx import { icons } from "@tabler/icons-react"; import { useState }...

# Update 1 The problem with my previously mentioned solution is that Webpack generates an entry map with all kinds of icons when it is created, which is added when...

@tsnery This is because you are importing the entire namespace. Your app may feel faster, but you download every icon in the first-load `400kb gzipped`. You can test that with...