Csaba Balázs
Csaba Balázs
Would you like to use the options (etag, pre-zip) within cpp directives? Interrest request, I will investigate it. Thanks for idea!
With v1.3.x we are prepared to generate (and use it in future) c++ defines: https://github.com/BCsabaEngine/svelteesp32?tab=readme-ov-file#c-defines
v1.4.0 released: https://github.com/BCsabaEngine/svelteesp32/releases/tag/v1.4.0 You can use: `--etag=compiler --gzip=compiler` command line args to create a (larger) .h file where c++ compiler directives are available: `SVELTEESP32_ENABLE_ETAG ` and `SVELTEESP32_ENABLE_GZIP` Give us feedback...
The size of the c++ header file, like all source files, is always (much) larger than the resulting binary code. After generating the header file, the header will contain the...
I'm already very curious, but I can wait a few more days. :)
svelteesp32 only emulates a webserver folder. It doesn't matter if it contains TXT or HTML files, it just serves them. If the application you created is capable of dynamic loading...
`moving the parsing to another thread to not block main thread` how can you implement it? Should be use 2-4 replicas of application to serve request efficiently?
[email protected] depends on @esbuild-kit/core-utils and core-utils is deprecated too and add some critical vulnerability to dockerfile. It is reported by docker scout. Should you change it to tsx? ``` npm...
`` works the same mode, but Toggle not. The inProgress value comes from outside (parent form saving state), but Toggle cannot use it from variable, just `` constant works.
This is a working workaround but I should use the proper boolean mode ``` {#if inProgress} {:else} {/if} ```