mirror of
https://github.com/tiennm99/ai-coding-workflow-labs.git
synced 2026-09-17 12:19:05 +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.
10 lines
172 B
JavaScript
10 lines
172 B
JavaScript
import { mount } from 'svelte'
|
|
import './app.css'
|
|
import App from './App.svelte'
|
|
|
|
const app = mount(App, {
|
|
target: document.getElementById('app'),
|
|
})
|
|
|
|
export default app
|