mirror of
https://github.com/tiennm99/ai-coding-workflow-labs.git
synced 2026-08-13 07:22:05 +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.
18 lines
497 B
JavaScript
18 lines
497 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import tailwind from '@astrojs/tailwind';
|
|
import sitemap from '@astrojs/sitemap';
|
|
|
|
const siteUrl = process.env.SITE_URL ?? 'https://tiennm99.github.io';
|
|
const basePath = process.env.SITE_BASE ?? '/ai-coding-workflow-labs/gstack';
|
|
|
|
export default defineConfig({
|
|
site: siteUrl,
|
|
base: basePath,
|
|
trailingSlash: 'always',
|
|
output: 'static',
|
|
integrations: [tailwind({ applyBaseStyles: false }), sitemap()],
|
|
build: {
|
|
assets: 'assets',
|
|
},
|
|
});
|