init
This commit is contained in:
commit
0a1187788c
49 changed files with 11570 additions and 0 deletions
18
astro.config.mjs
Normal file
18
astro.config.mjs
Normal file
|
@ -0,0 +1,18 @@
|
|||
import { defineConfig } from "astro/config";
|
||||
|
||||
import sitemap from "@astrojs/sitemap";
|
||||
import compress from "astro-compress";
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
site: "https://reidlab.online",
|
||||
vite: {
|
||||
build: {
|
||||
sourcemap: true
|
||||
}
|
||||
},
|
||||
integrations: [
|
||||
sitemap(),
|
||||
compress()
|
||||
]
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue