Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
juanandres-montero committed Mar 30, 2024
1 parent 35055cc commit 2f34428
Show file tree
Hide file tree
Showing 19 changed files with 259 additions and 85 deletions.
6 changes: 6 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { defineConfig } from 'astro/config';
import sitemap from '@astrojs/sitemap';
import UnoCSS from 'unocss/astro';

import node from "@astrojs/node";

// https://astro.build/config
export default defineConfig({
// used to generate images
Expand All @@ -16,4 +18,8 @@ export default defineConfig({
exclude: ['@resvg/resvg-js']
}
},
output: "server",
adapter: node({
mode: "standalone"
})
});
6 changes: 4 additions & 2 deletions astro.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from 'astro/config';
import sitemap from '@astrojs/sitemap';
import UnoCSS from 'unocss/astro';
import netlify from "@astrojs/netlify";
import node from "@astrojs/node";

export default defineConfig({
// used to generate images
Expand All @@ -20,5 +20,7 @@ export default defineConfig({
},
},
output: "server",
adapter: netlify()
adapter: node({
mode: "standalone"
})
});
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"devDependencies": {
"@iconify-json/logos": "^1.1.41",
"@iconify-json/uil": "^1.1.8",
"@resvg/resvg-js": "^2.6.0",
"@resvg/resvg-js": "^2.6.2",
"@typescript-eslint/parser": "^6.15.0",
"@unocss/reset": "^0.57.7",
"astro": "^4.5.10",
Expand Down
Loading

0 comments on commit 2f34428

Please sign in to comment.