mirror of
https://github.com/tiennm99/ai-coding-workflow-labs.git
synced 2026-08-15 19:21:50 +00:00
Each web demo builds with its base path under /ai-coding-workflow-labs/, a single deploy workflow assembles them with a root index, and the per-directory workflows from the standalone repos are removed.
10 lines
276 B
JavaScript
10 lines
276 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({
|
|
base: '/ai-coding-workflow-labs/bmad/',
|
|
plugins: [svelte(), tailwindcss()],
|
|
})
|