round 1 of implementation of scaffold and design tokens

This commit is contained in:
2026-06-01 14:40:22 -06:00
parent 4df07aa44e
commit 6594f00779
8 changed files with 1523 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [
tailwindcss(),
vue(),
],
})