From here I will actually track changed with git but I just needed a base to work from. RIP this attomic ass commit
12 lines
No EOL
274 B
JavaScript
12 lines
No EOL
274 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import preact from "@astrojs/preact";
|
|
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: "https://aria.coffee",
|
|
integrations: [preact(), tailwind()]
|
|
}); |