Refactored project ready for server.

Signed-off-by: Louis Hollingworth <louis@hollingworth.nl>
This commit is contained in:
Louis Hollingworth 2024-02-14 17:39:30 +00:00
parent 5a115374b4
commit dd67fc967a
Signed by: lucxjo
GPG key ID: A11415CB3DC7809B
36 changed files with 1187 additions and 1003 deletions

9
fe/astro.config.mjs Normal file
View file

@ -0,0 +1,9 @@
import { defineConfig } from 'astro/config';
import vue from "@astrojs/vue";
import tailwind from "@astrojs/tailwind";
// https://astro.build/config
export default defineConfig({
integrations: [vue(), tailwind()]
});