mirror of
https://github.com/tiennm99/ai-coding-workflow-labs.git
synced 2026-09-13 16:18:37 +00:00
Initialize project with Svelte 5, Vite 8, Tailwind CSS v4, and Vitest. Set up folder structure (src/lib, src/components, public/fonts), constants module with game values and 12-tier tile colors, Clear Sans font, and page background styling.
9 lines
234 B
JavaScript
9 lines
234 B
JavaScript
import { defineConfig } from 'vite'
|
|
import { svelte } from '@sveltejs/vite-plugin-svelte'
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [svelte(), tailwindcss()],
|
|
})
|