Cyteon
Cyteon
Explore posts from servers
CDCloudflare Developers
Created by Cyteon on 10/22/2024 in #pages-help
Too many subrequests when im not making 50 subrequests
hm
8 replies
CDCloudflare Developers
Created by Cyteon on 10/22/2024 in #pages-help
Too many subrequests when im not making 50 subrequests
anyone?
8 replies
CDCloudflare Developers
Created by Cyteon on 10/22/2024 in #pages-help
Too many subrequests when im not making 50 subrequests
😭
8 replies
CDCloudflare Developers
Created by Cyteon on 10/22/2024 in #pages-help
Too many subrequests when im not making 50 subrequests
Anyone alive?
8 replies
CDCloudflare Developers
Created by Cyteon on 10/22/2024 in #pages-help
Too many subrequests when im not making 50 subrequests
I'm 99.99% sure I'm not making 50 subrequests
8 replies
CDCloudflare Developers
Created by Cyteon on 10/22/2024 in #pages-help
Too many subrequests when im not making 50 subrequests
Anyone know a solution?
8 replies
SSolidJS
Created by Cyteon on 10/14/2024 in #support
template2 is not a function
Thanks
10 replies
SSolidJS
Created by Cyteon on 10/14/2024 in #support
template2 is not a function
Didn't notice
10 replies
SSolidJS
Created by Cyteon on 10/14/2024 in #support
template2 is not a function
Ah
10 replies
SSolidJS
Created by Cyteon on 10/14/2024 in #support
template2 is not a function
(i only changed main -> body)
10 replies
SSolidJS
Created by Cyteon on 10/14/2024 in #support
template2 is not a function
import { createSignal } from "solid-js";
import "./app.css";

export default function App() {
const [count, setCount] = createSignal(0);

return (
<body>
<h1>Hello world!</h1>
<button
class="increment"
onClick={() => setCount(count() + 1)}
type="button"
>
Clicks: {count()}
</button>
<p>
Visit{" "}
<a href="https://start.solidjs.com" target="_blank">
start.solidjs.com
</a>{" "}
to learn how to build SolidStart apps.
</p>
</body>
);
}
import { createSignal } from "solid-js";
import "./app.css";

export default function App() {
const [count, setCount] = createSignal(0);

return (
<body>
<h1>Hello world!</h1>
<button
class="increment"
onClick={() => setCount(count() + 1)}
type="button"
>
Clicks: {count()}
</button>
<p>
Visit{" "}
<a href="https://start.solidjs.com" target="_blank">
start.solidjs.com
</a>{" "}
to learn how to build SolidStart apps.
</p>
</body>
);
}
10 replies
SSolidJS
Created by Cyteon on 10/14/2024 in #support
template2 is not a function
code of app.tsx
10 replies
SSolidJS
Created by Cyteon on 10/14/2024 in #support
template2 is not a function
its a fresh project made with solidstart
10 replies