Hey guys, i have an interesting issue. When i'm using the bun preset, none of the build assets for the clients will work, but using the node-server preset it works just fine.
The config is pretty straight forward too:
export default defineConfig({
vite: {
plugins: [
viteTsConfigPaths({
projects: ['./tsconfig.json']
}),
tailwindcss()
]
},
server: {
preset: 'node-server'
},
tsr: {
autoCodeSplitting: true
}
});