Implement recommended config changes

This commit is contained in:
Maarten Dekker
2023-01-26 11:27:05 +01:00
parent 87c68e8e0d
commit eb9db7c190
4 changed files with 6 additions and 4 deletions

View File

@@ -1,10 +1,9 @@
import { defineConfig } from "astro/config";
import tailwind from "@astrojs/tailwind";
import image from "@astrojs/image";
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
export default defineConfig({
export default {
site: "https://astroship.web3templates.com",
integrations: [
tailwind(),
@@ -14,4 +13,4 @@ export default defineConfig({
mdx(),
sitemap(),
],
});
};