diff options
| author | Pinapelz <yukais@pinapelz.com> | 2023-11-04 16:48:10 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2023-11-04 16:48:10 -0700 |
| commit | 4d290e9a921051f9ddc40d35a1c532998a0a2b0f (patch) | |
| tree | 15998a04e7816b83e8536b3d3ba790ab4f31d4bc /astro.config.mjs | |
| parent | 3e6d102ad414595542226672ae3fe2f0985ae17c (diff) | |
add tailwind css and overhaul website contents
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index 882e651..94b5c11 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,4 +1,10 @@ import { defineConfig } from 'astro/config'; +import tailwind from "@astrojs/tailwind"; + // https://astro.build/config -export default defineConfig({}); +export default defineConfig({ + outDir: 'public', + publicDir: 'static', + integrations: [tailwind()] +});
\ No newline at end of file |
