2024-12-01 16:39:12 +00:00
|
|
|
// @ts-check
|
|
|
|
import { defineConfig } from 'astro/config';
|
2024-12-01 19:42:15 +00:00
|
|
|
import tailwind from '@astrojs/tailwind';
|
2024-12-01 16:39:12 +00:00
|
|
|
|
2024-12-01 19:42:15 +00:00
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
// ...
|
|
|
|
integrations: [tailwind()],
|
2024-12-01 19:45:35 +00:00
|
|
|
output: 'static',
|
|
|
|
site: 'https://jschuler.hackclub.app',
|
2024-12-01 19:42:15 +00:00
|
|
|
});
|