12 lines
289 B
JavaScript
12 lines
289 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import tailwind from '@astrojs/tailwind';
|
|
import react from '@astrojs/react';
|
|
|
|
export default defineConfig({
|
|
integrations: [tailwind(), react()],
|
|
site: 'https://aethex-connect.com',
|
|
server: {
|
|
port: 4321,
|
|
host: 'localhost'
|
|
}
|
|
});
|