mirror of
https://github.com/AbaTekNTNU/followspot-psn.git
synced 2025-12-06 13:54:58 +00:00
13 lines
258 B
JavaScript
13 lines
258 B
JavaScript
// @ts-check
|
|
// @ts-check
|
|
import { defineConfig } from "astro/config";
|
|
|
|
import svelte from "@astrojs/svelte";
|
|
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [svelte(), tailwind()],
|
|
});
|