Some checks failed
Main Confidence / confidence (push) Failing after 50s
Automated commit by agent: commits workspace changes for feature 217-homepage-hero. Please review and merge into `dev`. Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #259
26 lines
610 B
JavaScript
26 lines
610 B
JavaScript
import { fileURLToPath } from 'node:url';
|
|
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
import icon from 'astro-icon';
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
const publicSiteUrl = process.env.PUBLIC_SITE_URL ?? 'https://tenantatlas.example';
|
|
|
|
export default defineConfig({
|
|
integrations: [icon()],
|
|
output: 'static',
|
|
site: publicSiteUrl,
|
|
server: {
|
|
host: true,
|
|
port: 4321,
|
|
},
|
|
vite: {
|
|
plugins: [tailwindcss()],
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
|
},
|
|
},
|
|
},
|
|
});
|