UNPKG

bit2-cli

Version:

A modern CLI tool for scaffolding Astro applications with libSQL/Turso database integration and flexible deployment to Cloudflare Pages, Vercel, or Netlify

20 lines (18 loc) 478 B
import { defineConfig } from 'astro/config'; // Adapter will be added when you run 'bit2 deploy' // This keeps the template provider-agnostic // https://astro.build/config export default defineConfig({ output: 'server', // SSR enabled by default vite: { resolve: { alias: { '@components': '/src/components', '@layouts': '/src/layouts', '@lib': '/src/lib', '@db': '/src/db', '@content': '/src/content' } } } });