mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-20 08:03:37 +02:00
New Astro landing page with hero, features, pricing sections. Server: avatar upload with file validation, vCard import parser. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
362 B
JavaScript
19 lines
362 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import tailwind from '@astrojs/tailwind';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [tailwind()],
|
|
output: 'static',
|
|
build: {
|
|
inlineStylesheets: 'auto',
|
|
},
|
|
vite: {
|
|
resolve: {
|
|
alias: {
|
|
'@components': '/src/components',
|
|
'@layouts': '/src/layouts',
|
|
},
|
|
},
|
|
},
|
|
});
|