A modern web application starter template featuring SvelteKit, Tailwind CSS v4, and shadcn-svelte components.
/shadcn-component-test
@/*
→ src/lib/*
)npm install
# or
pnpm install
# or
yarn install
src/
├── lib/
│ ├── components/ui/ # shadcn-svelte components
│ └── utils.ts # Utility functions (cn, etc.)
├── routes/
│ ├── +page.svelte # Home page
│ └── shadcn-component-test/ # Component showcase
└── app.css # Global styles & Tailwind config
/
- Home page/shadcn-component-test
- Component showcase and examples/sitemap.xml
- Auto-generated sitemapnpm run dev # Start development server
npm run build # Build for production
npm run preview # Preview production build
npm run check # Run TypeScript type checking
npm run check:watch # Run TypeScript type checking in watch mode
npm run lint # Run ESLint
npm run format # Format code with Prettier
npm run format:check # Check code formatting
Start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
To create a production version of your app:
npm run build
You can preview the production build with npm run preview
.
To deploy your app, you may need to install an adapter for your target environment.