Xeevis

Results 33 comments of Xeevis

Hello, I've looked at this more closely and in my case it's the `IIntersectionObserverService`, which can't be injected directly because of JsInterop call in constructor ```razor @inject IIntersectionObserverService ObserverService ```...

**PowershellGet v3.0.0-beta10** seems to be working fine. ```powershell # Install latest prelease version of PowershellGet Install-Module -Name PowerShellGet -AllowPrerelease -Force # Register BaGet repository Register-PSResourceRepository -Name 'BaGet' -Url 'http://127.0.0.1:5555/v3/index.json' -Trusted...

Globs in `.parcelrc` would totally work for us. Parcel 2 cannot be used with Blazor WebAssembly because resources are dynamically loaded at runtime from dll libraries. This alone would open...

With recently published [TailwindCSS Standalone CLI](https://tailwindcss.com/blog/standalone-cli) it's quite easy to use TailwindCSS with [`Deno.run`](https://deno.land/manual/examples/subprocess) with no Node whatsoever. To be able to use PostCSS plugins there are official modules for...

Works fine for me in `*.pcss` after I've duplicated css regex as postcss and restarted VS Code ```json "headwind.classRegex": { "css": "\\B@apply\\s+([_a-zA-Z0-9\\s\\-\\:\\/]+);", "postcss": "\\B@apply\\s+([_a-zA-Z0-9\\s\\-\\:\\/]+);", } ``` ![lxSm8qn0lb](https://user-images.githubusercontent.com/5835044/104476815-f193a900-55c0-11eb-8abb-76b15ee0761c.gif)

I've been experimenting with Blazor WebAssembly prerendering with ABP and it's so much better experience. Slight disadvantage is that you must somehow pause your users from interacting with the page...

I've just wrote step-by-step guide on how to achieve basic prerendering with Blazor WebAssembly in ABP 6 (releasing soon). Feel free to give it a try and let me know...

> @Xeevis Good work! Did you manage to get further with this? Hey, thanks @Znow. I have a prototype site I've made like a year ago that has many of...

I'm prototyping TailwindCSS JIT with Blazorise and it turns out it's far better to use existing provider as a starting point rather than starting from scratch. Since TailwindCSS is (as...

Blazorise has no lack of support for TailwindCSS, it actually works great with it. TailwindCSS is a framework for quick & dynamic building of minimal stylesheets and since there are...