bravo six, going insano style
This commit is contained in:
parent
9b2ec20636
commit
7f75bba052
28 changed files with 8620 additions and 10546 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import { defineConfig } from "astro/config";
|
||||
import { defineConfig, envField } from "astro/config";
|
||||
import solidJs from "@astrojs/solid-js";
|
||||
import mdx from "@astrojs/mdx";
|
||||
import icon from "astro-icon";
|
||||
|
|
@ -10,14 +10,32 @@ import { markdownConfig } from "./src/config/io/markdown.ts";
|
|||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
markdown: markdownConfig,
|
||||
site: "https://quickshell.outfoxxed.me",
|
||||
site: "https://quickshell.org",
|
||||
integrations: [
|
||||
solidJs({
|
||||
devtools: true,
|
||||
devtools: false,
|
||||
}),
|
||||
mdx(),
|
||||
pagefind(),
|
||||
icon(),
|
||||
sitemap(),
|
||||
],
|
||||
env: {
|
||||
schema: {
|
||||
VERSION_FILE_PATH: envField.string({
|
||||
context: "server",
|
||||
access: "secret",
|
||||
default: "./versions.json",
|
||||
}),
|
||||
BASE_URL: envField.number({
|
||||
context: "server",
|
||||
access: "public",
|
||||
}),
|
||||
PRODUCTION: envField.string({
|
||||
context: "server",
|
||||
access: "secret",
|
||||
optional: true,
|
||||
}),
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue