-
1. kobweb run
2. change some code
3. while "building..." spinner is up, press Q
Expected: Page indicates that the web server is down
Actual: Spinner keeps going forever
-
**Bug report**
Not sure if this is SDK or OMZ shell doing this, but after updating both I am suddenly getting this printing out every time I open a new shell.
This is actually printed 2 time…
-
As my SPA hosting provider doesnt sopport URL rewriting (no permission for .htaccess rewrite engine) user always get an 404 error if they navigate from outside to any page of my site ( e.g. http://ex…
-
Currently, if you want to link to different routes, you have to do it by String, e.g.
```
@Page
@Composable
fun SomePage() {
Link("/path/to/route", "Click me to go to another page")
}
```
…
-
Kobweb is very fond of top level factory functions, they are used everywhere. But they aren't documented properly - the documentation typically resides on the type, which we as Kotlin programmers most…
-
Basically, if the user goes to load a page that's taking a long time to pull down (mostly because of large JS files), it would be nice to allow users to determine how to render some UI to show that th…
-
It is important to figure this out soon, so that new code that goes in will see a precedent that they should be using tests.
-
If you use `ComponentStyle` + breakpoints in your Kobweb project, you should get a clean responsive design when you open your page either using mobile or desktop.
Instead, if you rely on `rememberB…
-
Hi! I've been using Kobweb on a project of mine, and have run into some annoyances while creating styles that I think could be solved by a token API similar to the one that exists in Panda CSS (and ma…
-
It might be nice for Kobweb to provide an easy way to report if an element in visible on screen or not.
One user said this was possible with React:
```javascript
{({ isVisible }) =>
…