forked from Rabbit-Company/RabbitHosting-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
39 lines (33 loc) · 1.02 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
import { defineConfig } from 'astro/config';
import favicons from "astro-favicons"; // Add code manually
import tailwind from "@astrojs/tailwind";
import sitemap from '@astrojs/sitemap';
// https://astro.build/config
export default defineConfig({
site: 'https://pbtservers.com',
integrations: [
tailwind(),
sitemap(),
favicons({
masterPicture: "./public/images/favicon.svg",
// emitAssets: true,
// You should adjust the following options accordingly
appName: "PbtSystems & Hosting",
appShortName: "PbtHosting",
appDescription: "El Hosting de PbtSystems",
// dir:"auto",
lang: "es-ES",
// display: "standalone",
// orientation: "any",
// start_url: "/?homescreen=1",
background: "#fff",
theme_color: "#fff",
faviconsDarkMode: false, // default `true`, Make favicon compatible with light and dark modes
// appleStatusBarStyle: "black-translucent",
//....
})],
trailingSlash: 'never',
build: {
format: 'file'
}
});