Skip to content

Commit 4153cd6

Browse files
final tweaks and changes, testing deployment
1 parent 4da6a8a commit 4153cd6

23 files changed

Lines changed: 759 additions & 115 deletions

astro.config.mjs

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,49 @@
11
// @ts-check
22
import { defineConfig } from 'astro/config';
3-
43
import tailwindcss from '@tailwindcss/vite';
4+
import favicons from 'astro-favicons';
55

66
// https://astro.build/config
77
export default defineConfig({
88
site: 'https://kyleundefined.dev',
9+
output: 'static',
910
markdown: {
1011
syntaxHighlight: 'shiki',
1112
shikiConfig: {
1213
theme: 'synthwave-84',
1314
},
15+
smartypants: false,
16+
},
17+
build: {
18+
format: 'file',
1419
},
1520
vite: {
1621
plugins: [tailwindcss()]
17-
}
22+
},
23+
integrations: [
24+
favicons({
25+
input: {
26+
favicons: [
27+
"public/favicon.svg",
28+
],
29+
},
30+
name: "Kyle Undefined.dev",
31+
short_name: "Kyle Undefined",
32+
icons: {
33+
favicons: true,
34+
android: true,
35+
appleIcon: true,
36+
appleStartup: true,
37+
windows: true,
38+
yandex: true,
39+
},
40+
pixel_art: true,
41+
manifestMaskable: false,
42+
output: {
43+
images: true,
44+
files: true,
45+
html: true,
46+
},
47+
}),
48+
],
1849
});

0 commit comments

Comments
 (0)