Skip to content

Commit

Permalink
fix: format how to ask for help tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
rawkode committed Jul 19, 2023
1 parent a8dc1db commit 1953f79
Show file tree
Hide file tree
Showing 6 changed files with 1,052 additions and 977 deletions.
32 changes: 18 additions & 14 deletions projects/rawkode.academy/website/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,23 @@ import sitemap from "@astrojs/sitemap";
import svelte from "@astrojs/svelte";
import tailwind from "@astrojs/tailwind";


export default defineConfig({
site: "https://rawkode.academy",
integrations: [
mdx(),
partytown({
config: {
forward: ["dataLayer.push"],
},
}),
react(),
sitemap(),
svelte(),
tailwind({ config: { applyBaseStyles: false } }),
],
site: "https://rawkode.academy",
integrations: [
mdx({
syntaxHighlight: "shiki",
shikiConfig: {
theme: "dracula",
},
}),
partytown({
config: {
forward: ["dataLayer.push"],
},
}),
react(),
sitemap(),
svelte(),
tailwind({ config: { applyBaseStyles: false } }),
],
});

0 comments on commit 1953f79

Please sign in to comment.