Skip to content

Commit 440cdb3

Browse files
Merge pull request #52 from recursivezero/develop
Develop merged with all PR merged
2 parents d7ae495 + 99272d9 commit 440cdb3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+14024
-784
lines changed

.vscode/dictionaries/project-words.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,6 @@ threadzip
4242
Threazip
4343
vaul
4444
venv
45+
Verdana
4546
waitlist
4647
werkzeug

abcd.code-workspace

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,8 @@
153153
"titleBar.activeBackground": "#abcd00",
154154
"titleBar.activeForeground": "#15202b",
155155
"titleBar.inactiveBackground": "#abcd0099",
156-
"titleBar.inactiveForeground": "#15202b99"
156+
"titleBar.inactiveForeground": "#15202b99",
157+
"tab.activeBorder": "#d5ff01"
157158
},
158159
"files.exclude": {
159160
"**/.git": false,

astro.config.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
import mdx from "@astrojs/mdx";
2+
import node from "@astrojs/node";
23
import react from "@astrojs/react";
34
import tailwind from "@astrojs/tailwind";
45
import { defineConfig } from "astro/config";
5-
// import icon from "astro-icon";
66

77
// https://astro.build/config
88
export default defineConfig({
99
site: "https://parixan.xyz",
10+
output: "static",
1011
build: {
11-
format: "file"
12+
format: "directory"
1213
},
1314
prefetch: {
1415
prefetchAll: true
@@ -20,7 +21,6 @@ export default defineConfig({
2021
svg: true
2122
},
2223
integrations: [
23-
// icons(),
2424
mdx(),
2525
react({
2626
experimentalReactChildren: true
@@ -38,5 +38,5 @@ export default defineConfig({
3838
exclude: ["@resvg/resvg-js"]
3939
}
4040
},
41-
output: 'server',
41+
adapter: node({ mode: "standalone" })
4242
});

0 commit comments

Comments
 (0)