~repos /only-bible-app
git clone https://pyrossh.dev/repos/only-bible-app.git
The only bible app you will ever need. No ads. No in-app purchases. No distractions.
ui/astro.config.mjs
// @ts-checkimport { defineConfig, fontProviders } from 'astro/config';import icon from "astro-icon";import sitemap from '@astrojs/sitemap';
// https://astro.build/configexport default defineConfig({ site: 'https://pyrossh.dev/onlybible', trailingSlash: 'never', output: 'static', integrations: [ icon(), sitemap(), ], experimental: { // csp: true, fonts: [{ provider: fontProviders.google(), name: "Roboto", cssVariable: "--font-roboto" }] },});