mirror of
https://github.com/PotentiaRobotics/potentia-website.git
synced 2025-04-03 20:10:15 -04:00
15 lines
357 B
JavaScript
15 lines
357 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
// https://astro.build/config
|
|
import react from "@astrojs/react";
|
|
|
|
// https://astro.build/config
|
|
import vue from "@astrojs/vue";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [tailwind(), react(), vue()]
|
|
}); |