-
Notifications
You must be signed in to change notification settings - Fork 134
/
Copy pathastro.config.mjs
52 lines (42 loc) · 4.95 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import { defineConfig } from "astro/config";
import cloudflare from "@astrojs/cloudflare";
import tailwind from "@astrojs/tailwind";
import react from "@astrojs/react";
// https://astro.build/config
export default defineConfig({
output: "server",
integrations: [tailwind(), react()],
adapter: cloudflare({
platformProxy: {
enabled: true,
},
}),
security: {
checkOrigin: false,
},
vite: {},
});
console.log("\nWelcome to ...");
console.log(" _____ _______ _____ _____ _____ _____ _____ ");
console.log(" /\\ \\ /::\\ \\ /\\ \\ /\\ \\ /\\ \\ /\\ \\ /\\ \\ ");
console.log(" /::\\ \\ /::::\\ \\ /::\\____\\ /::\\ \\ /::\\ \\ /::\\ \\ /::\\ \\ ");
console.log(" /::::\\ \\ /::::::\\ \\ /::::| | \\:::\\ \\ /::::\\ \\ \\:::\\ \\ /::::\\ \\ ");
console.log(" /::::::\\ \\ /::::::::\\ \\ /:::::| | \\:::\\ \\ /::::::\\ \\ \\:::\\ \\ /::::::\\ \\ ");
console.log(" /:::/\\:::\\ \\ /:::/~~\\:::\\ \\ /::::::| | \\:::\\ \\ /:::/\\:::\\ \\ \\:::\\ \\ /:::/\\:::\\ \\ ");
console.log(" /:::/__\\:::\\ \\ /:::/ \\:::\\ \\ /:::/|::| | \\:::\\ \\ /:::/ \\:::\\ \\ \\:::\\ \\ /:::/__\\:::\\ \\ ");
console.log(" \\:::\\ \\:::\\ \\ /:::/ / \\:::\\ \\ /:::/ |::| | /::::\\ \\ /:::/ \\:::\\ \\ /::::\\ \\ \\:::\\ \\:::\\ \\ ");
console.log(" ___\\:::\\ \\:::\\ \\ /:::/____/ \\:::\\____\\ /:::/ |::| | _____ ____ /::::::\\ \\ /:::/ / \\:::\\ \\ _____ /::::::\\ \\ ___\\:::\\ \\:::\\ \\ ");
console.log(" /\\ \\:::\\ \\:::\\ \\ |:::| | |:::| | /:::/ |::| |/\\ \\ /\\ \\ /:::/\\:::\\ \\ /:::/ / \\:::\\ \\ /\\ \\ /:::/\\:::\\ \\ /\\ \\:::\\ \\:::\\ \\ ");
console.log("/::\\ \\:::\\ \\:::\\____\\|:::|____| |:::| |/:: / |::| /::\\____\\/::\\ \\/:::/ \\:::\\____\\/:::/____/ \\:::\\____\\/::\\ /:::/ \\:::\\____\\/::\\ \\:::\\ \\:::\\____\\");
console.log("\\:::\\ \\:::\\ \\::/ / \\:::\\ \\ /:::/ / \\::/ /|::| /:::/ /\\:::\\ /:::/ \\::/ /\\:::\\ \\ \\::/ /\\:::\\ /:::/ \\::/ /\\:::\\ \\:::\\ \\::/ /");
console.log(" \\:::\\ \\:::\\ \\/____/ \\:::\\ \\ /:::/ / \\/____/ |::| /:::/ / \\:::\\/:::/ / \\/____/ \\:::\\ \\ \\/____/ \\:::\\/:::/ / \\/____/ \\:::\\ \\:::\\ \\/____/ ");
console.log(" \\:::\\ \\:::\\ \\ \\:::\\ /:::/ / |::|/:::/ / \\::::::/ / \\:::\\ \\ \\::::::/ / \\:::\\ \\:::\\ \\ ");
console.log(" \\:::\\ \\:::\\____\\ \\:::\\__/:::/ / |::::::/ / \\::::/____/ \\:::\\ \\ \\::::/ / \\:::\\ \\:::\\____\\ ");
console.log(" \\:::\\ /:::/ / \\::::::::/ / |:::::/ / \\:::\\ \\ \\:::\\ \\ \\::/ / \\:::\\ /:::/ / ");
console.log(" \\:::\\/:::/ / \\::::::/ / |::::/ / \\:::\\ \\ \\:::\\ \\ \\/____/ \\:::\\/:::/ / ");
console.log(" \\::::::/ / \\::::/ / /:::/ / \\:::\\ \\ \\:::\\ \\ \\::::::/ / ");
console.log(" \\::::/ / \\::/____/ /:::/ / \\:::\\____\\ \\:::\\____\\ \\::::/ / ");
console.log(" \\::/ / \\::/ / \\::/ / \\::/ / \\::/ / ");
console.log(" \\/____/ \\/____/ \\/____/ \\/____/ \\/____/ ");
console.log("\n");
console.log("The World's Fastest API Framework!\n");