-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
37 lines (35 loc) · 912 Bytes
/
astro.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { defineConfig, sharpImageService } from "astro/config";
import tailwind from "@astrojs/tailwind";
import { readFileSync } from "node:fs";
import mdx from '@astrojs/mdx';
import compressor from "astro-compressor";
import icon from "astro-icon";
// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), compressor(), mdx(), icon()],
image: {
service: sharpImageService()
},
site: "https://ozkkar.dev",
vite: {
plugins: [rawFonts([".ttf", ".woff"])],
optimizeDeps: {
exclude: ["@resvg/resvg-js"]
}
}
});
// vite plugin to import fonts
function rawFonts(ext) {
return {
name: "vite-plugin-raw-fonts",
transform(_, id) {
if (ext.some(e => id.endsWith(e))) {
const buffer = readFileSync(id);
return {
code: `export default ${JSON.stringify(buffer)}`,
map: null
};
}
}
};
}