SvelteKit
Crear proyecto
bunx sv create <name>
npx sv create <name>
Ejecutar proyecto
# Opcional. Iniciar base de datos con Docker
bun run db:start
# Iniciar proyecto
bun run dev
Notas rápidas
Experimentales: async y remoteFunctions
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapter(),
// =========================_
experimental: {
remoteFunctions: true
}
// =========================
},
// =========================
compilerOptions: {
experimental: {
async: true
}
}
// =========================
};