NB 😈 | Nightly 🦊
NB 😈 | Nightly 🦊
SSolidJS
Created by NB 😈 | Nightly 🦊 on 2/26/2025 in #support
Solid Start Cloudflare-pages deploy returns 404
After building solidstart app I can use it with Cloudflare dev mode but after deployment any requests returns 404. I am able to get static files tho. Dev mode also works. example https://aec52c8e.dex-app-5o2.pages.dev/ my config
import { defineConfig } from '@solidjs/start/config'
import tsconfigPaths from 'vite-tsconfig-paths'
export default defineConfig({
vite: {
plugins: [tsconfigPaths()],
},
server: {
preset: 'cloudflare-pages',
},
})
import { defineConfig } from '@solidjs/start/config'
import tsconfigPaths from 'vite-tsconfig-paths'
export default defineConfig({
vite: {
plugins: [tsconfigPaths()],
},
server: {
preset: 'cloudflare-pages',
},
})
1 replies
SSolidJS
Created by NB 😈 | Nightly 🦊 on 8/24/2023 in #support
reactiveMap does not work with size/delete
I have noticed that reactiveMap does not trigger update on delete or when we "subscribe" using size or forEach method. Most confusing for me is delete since if i use has i expect that update will trigger signal, but this is not the case. Is it expected behaviour ?
2 replies
SSolidJS
Created by NB 😈 | Nightly 🦊 on 8/18/2023 in #support
ReactiveMap global signal
Reactive map that i use does not triger updated when i do operations like forEach is there way to make it still work like signal ?
7 replies
SSolidJS
Created by NB 😈 | Nightly 🦊 on 8/2/2023 in #support
Debounce selector
How to make createMemo only refresh max once a second no matter how many signals are inside
const data = createMemo(() => {
// compute heavy stuff multiple signals
})
const data = createMemo(() => {
// compute heavy stuff multiple signals
})
12 replies