mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-06-04 12:32:58 +00:00
b083dac3f0
Add real API support in demo mode with credential checking, implement build-time version injection from package.json, and refactor update checking with 24-hour caching. Migrate landing page from Vue to Astro with comprehensive UI components including Hero, Features, Benefits, and Tech Stack sections. Update CI/CD workflow with expanded cache paths and security scanner version pinned.
22 lines
383 B
JavaScript
22 lines
383 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import tailwind from '@astrojs/tailwind';
|
|
|
|
export default defineConfig({
|
|
site: 'https://trackeep.org',
|
|
output: 'static',
|
|
integrations: [
|
|
tailwind()
|
|
],
|
|
vite: {
|
|
optimizeDeps: {
|
|
exclude: ['@astrojs/check']
|
|
}
|
|
},
|
|
markdown: {
|
|
shikiConfig: {
|
|
theme: 'github-dark-default',
|
|
wrap: true
|
|
}
|
|
}
|
|
});
|