Relative Content

Tag Archive for javascriptsveltekit

How do I change env variables after getting build?

I am dealing with a project written with SvelteKit. In some cases, I need to change the .env files when there is a change in the servers I get the build from and I need to get the build every time I change it. What I’m wondering is that I can make changes to appsettings.json even after I get the build in my ASP.NET project and I just need to restart it through IIS. How can I do the same thing in SvelteKit and how can I access it from inside?

How do I create an inline Higher Order Component in SvelteKit 2.5?

I’m asking in general, but I’ll give you an example use-case. On a particular page I’m building, I’m using the Helper component from Flowbite-Svelte. I keep finding myself using <Helper color="red">...</Helper> to make the color red. It’d be nice to build a higher order component and just use that, e.g. <ErrorHelper>...</ErrorHelper>, where ErrorHelper automatically passes the color prop as red to Helper.