"use server"; Help
"use server"; works.
Is it safe to assume that everything under "use server"; runs on the server (of course scope dependent).
So, inside of the following function, only console.log(message); could run on the server....Documentation related to SolidJS Router
Best way how to call sever function onClick (SOLVED)
Referencing Solid without breaking any Licensing issues
Settings section, I want to make an About sub-section where the users can donate to me and several other open-source frameworks using my app.
I want to make a section for Solid, but that would mean I would have to use the logo and mention the company's name.
I was wondering: would there be any legal/trademark issue I could incur from this?...type narrowing signals
SolidStart Beta 2 Docs
React.createElement equivalent?
Beta2: Server init hook?
Beta2: How do I render html attribute server-side
Avoid re-rendering toolbar in solid router 0.10.x
useRoutes. It's similar to the example from the 0.9.x docs:
```
function App() {
const Routes = useRoutes(routes);
return (...Using script tag with custom parameter
<script async src="https://umami.domain.org/script.js" data-website-id="ba170e55-8r926-4fc2-a36f-a4ggrbbcd2ebd83"></script>
<script async src="https://umami.domain.org/script.js" data-website-id="ba170e55-8r926-4fc2-a36f-a4ggrbbcd2ebd83"></script>
setState variable as path doesn't work
Solid Router 0.10.x double render of App
<App> it gets rendered twice, whereas if I just have <>...</> it renders fine.
This causes double rendering (two 'standard-grid' divs, two menus etc).
```TypeScript
const App = (props: { children?: JSXElement}) => (...Solid-js router 0.10.x cache invalidation
cache function does not invalidate the cache from one test to the next, causing some tests to get API responses made for previous tests when making the same API requests.
I looked at the source code of cache and there seems to be no way to invalidate the entire cache. I saw that there is a cache.set function there but it seems it can't be used for invalidating individual caches. Are there other tricks I can use to achieve this behavior?
I really don't want to change components' code to fetch without caching for tests, so it would be interesting to have some sort of cache.clear to invalidate the entire cache for testing purposes....Polyfilling ecmascript features
Object.hasOwn
What's the recommended way to add polyfills with default stack (Vite + solid.js)?
I tried adding core-js with babel preset to solid otpions, but seems like Vite doesn't handle it right in dev-mode, as core-js is written with require....Why does solid-router break DaisyUI styles?
)
Any thoughts or ideas? If you'd like to see any parts of my code feel free to ask!...
does Effect have a number limit?
When to use data.loading vs <suspense>
Development vs Build variables - using Vite
const server = "http://localhost:3020"
const server = "http://localhost:3020"
Is there any way of caching an image loaded from a url?