mirror of
https://codeberg.org/HPCesia/AstralHalo.git
synced 2025-04-08 17:34:27 +08:00
14 lines
356 B
JavaScript
14 lines
356 B
JavaScript
// @ts-check
|
|
import tailwind from '@astrojs/tailwind';
|
|
import icon from 'astro-icon';
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: 'https://astral-halo.netilify.app/',
|
|
base: '/',
|
|
output: 'static',
|
|
trailingSlash: 'ignore',
|
|
integrations: [tailwind({ nesting: true }), icon()],
|
|
});
|