Initial commit of Astro version
This commit is contained in:
commit
e3d1f6999b
79 changed files with 9880 additions and 0 deletions
19
astro.config.mjs
Normal file
19
astro.config.mjs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import { defineConfig } from "astro/config";
|
||||
import tailwindIntegration from "@astrojs/tailwind";
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
site: "https://badmanners.xyz",
|
||||
integrations: [
|
||||
tailwindIntegration({
|
||||
applyBaseStyles: false,
|
||||
}),
|
||||
],
|
||||
build: {
|
||||
assets: "assets",
|
||||
},
|
||||
outDir: "./dist",
|
||||
redirects: {
|
||||
"/tos": "/terms_of_service",
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue