first attempt at making a UI (clickdummy)
This commit is contained in:
parent
66c22a915f
commit
b80e3fe4f0
13 changed files with 4775 additions and 0 deletions
17
app/astro.config.mjs
Normal file
17
app/astro.config.mjs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
// @ts-check
|
||||
import {defineConfig} from 'astro/config';
|
||||
import tailwindcss from "@tailwindcss/vite";
|
||||
|
||||
import vue from "@astrojs/vue";
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
vite: {
|
||||
plugins: [tailwindcss()],
|
||||
},
|
||||
i18n: {
|
||||
locales: ["en", "de"],
|
||||
defaultLocale: "en",
|
||||
},
|
||||
integrations: [vue()],
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue