aboutsummaryrefslogtreecommitdiff
path: root/astro.config.mjs
diff options
context:
space:
mode:
authorAriel Costas Guerrero <94913521+arielcostas@users.noreply.github.com>2025-03-14 22:21:47 +0100
committerAriel Costas Guerrero <94913521+arielcostas@users.noreply.github.com>2025-03-14 22:21:47 +0100
commit54dab1e00b38693e96c801d0c5a020693a35bbda (patch)
treee0c61e6b694a1e8c8a6618671a9f5c738e6e621f /astro.config.mjs
parent847294bbf1b4bfa213b7ac03757aa2cf444c31bd (diff)
Refactor SCSS imports to use @use syntax, update portfolio entries, and add new projects
Diffstat (limited to 'astro.config.mjs')
-rw-r--r--astro.config.mjs24
1 files changed, 13 insertions, 11 deletions
diff --git a/astro.config.mjs b/astro.config.mjs
index 98a29e3..843c997 100644
--- a/astro.config.mjs
+++ b/astro.config.mjs
@@ -1,15 +1,17 @@
import sitemap from '@astrojs/sitemap';
import { defineConfig } from 'astro/config';
+import mdx from '@astrojs/mdx';
+
export default defineConfig({
- compressHTML: true,
- site: "https://www.costas.dev",
- integrations: [sitemap({
- priority: 0.5,
- changefreq: 'weekly'
- })],
- build: {
- assets: 'assets',
- inlineStylesheets: 'never',
- },
-});
+ compressHTML: true,
+ site: "https://www.costas.dev",
+ integrations: [sitemap({
+ priority: 0.5,
+ changefreq: 'weekly'
+ }), mdx()],
+ build: {
+ assets: 'assets',
+ inlineStylesheets: 'never',
+ },
+}); \ No newline at end of file