feat: Initialize Svelte frontend with Vite, TailwindCSS, custom theme, and a basic "Hello World" component.

This commit is contained in:
2026-03-02 19:33:18 -05:00
parent e541ab94a4
commit 9b4f94207c
5 changed files with 635 additions and 92 deletions

View File

@@ -1,9 +1,13 @@
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()],
plugins: [
svelte(),
tailwindcss(),
],
// Resolve the W: subst drive to avoid path mismatches on Windows
resolve: {
preserveSymlinks: true,