maxeth
maxeth
In your project folder, you should (for now) have a javascript file and a 'views' folder. Inside the views folder, create a file called 'main.hbs'. Also, create a directory called...
I have no idea what I could do because rollup automatically generates source maps, also I'm not getting any warnings. When I look at the build output the source maps...
I assume you use create-react-app and It's probably something internal then, like webpack, because I don't get any warnings with next.js I think this is related: https://github.com/facebook/create-react-app/pull/11752, don't think one...
Does the current setup fail when building for you? It should work fine. The PR fails to build because ```export memo(TypeAnimation);``` is invalid. I think we could do ```export const...
> [...] it was changed and it doesn't work anymore in the lowest version of the package. What exactly doesn't work? Are you trying to build a lower version? If...
I just came across this use case and created a custom JWT via the exported `encode` method which I then set as the session token. ```tsx import { encode }...
@Puetz > did you find any major downsides to your solution yet? For my use case it works perfectly fine :) > Unfortunately this does not set the cookie for...
Hey, this package was initially intended for simple text to keep the bundle size low. You could maybe compose different animation components to make the illusion of multi-line typing like...
I just tested it and in my case it's very fast, not slow, just as it should with a delay of 0.001ms between keystrokes. Not sure why it's slow on...
Hey, there's a small [docs section](https://react-type-animation.netlify.app/wrapper-css) about CSS caveats, maybe that's useful. You can define fixed dimensions for the animation via css or the `style` prop as shown [here](https://react-type-animation.netlify.app/wrapper-css#preventing-layout-shift). ```tsx...