srx.astro.nix/astro.config.mjs

21 lines
418 B
JavaScript
Raw Normal View History

import { defineConfig } from "astro/config";
import react from "@astrojs/react";
import tailwind from "@astrojs/tailwind";
2024-03-04 18:00:44 +01:00
import svgr from 'vite-plugin-svgr'
2022-12-22 23:31:21 +01:00
2023-03-30 01:14:12 +02:00
export default defineConfig({
2024-03-03 13:45:20 +01:00
// https://astro.build/config
site: "https://srx.digital",
server: { port: 3001 },
integrations: [
react(),
tailwind()
],
2024-03-04 18:00:44 +01:00
vite: {
plugins: [
svgr()
],
2024-03-04 18:00:44 +01:00
},
devToolbar: { enabled: false },
2023-03-30 01:14:12 +02:00
});