Skip to content

Commit

Permalink
Install cross platform (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
ofrades committed Apr 8, 2024
1 parent fe1fd2b commit 36fdc43
Show file tree
Hide file tree
Showing 12 changed files with 811 additions and 462 deletions.
11 changes: 9 additions & 2 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ const site = "https://tesourofieis.com";
import sitemap from "@astrojs/sitemap";
import Icons from "unplugin-icons/vite";
import partytown from "@astrojs/partytown";

import robotsTxt from "astro-robots-txt";

import icon from "astro-icon";

// https://astro.build/config
export default defineConfig({
site: site,
Expand Down Expand Up @@ -169,6 +170,7 @@ export default defineConfig({
forward: ["dataLayer.push"],
},
}),
icon(),
],
markdown: {
rehypePlugins: [rehypeHeadingIds],
Expand All @@ -177,7 +179,11 @@ export default defineConfig({
watch: false,
},
vite: {
plugins: [Icons({ compiler: "astro" })],
plugins: [
Icons({
compiler: "astro",
}),
],
server: {
watch: {
ignored: [
Expand All @@ -193,3 +199,4 @@ export default defineConfig({
service: passthroughImageService(),
},
});

588 changes: 531 additions & 57 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "starlight",
"name": "tesourofieis",
"type": "module",
"version": "0.1.5",
"version": "0.1.6",
"engines": {
"node": "20.9.0"
},
Expand All @@ -27,12 +27,13 @@
"@astrojs/starlight-tailwind": "^2.0.1",
"@astrojs/tailwind": "^5.1.0",
"@date-fns/utc": "^1.2.0",
"@tauri-apps/api": "^2.0.0-beta.2",
"@tauri-apps/cli": "^2.0.0-beta.2",
"@tauri-apps/api": "^2.0.0-beta.7",
"@tauri-apps/cli": "^2.0.0-beta.12",
"@tauri-apps/plugin-notification": "^2.0.0-beta.2",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
"astro": "^4.5.9",
"astro-icon": "^1.1.0",
"date-fns": "^3.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand All @@ -45,6 +46,7 @@
"@fontsource-variable/eb-garamond": "^5.0.18",
"@fontsource/berkshire-swash": "^5.0.19",
"@iconify-icon/react": "^2.0.1",
"@iconify-json/mdi": "^1.1.65",
"@iconify/json": "^2.2.195",
"@playwright/test": "^1.42.1",
"@types/node": "^20.9.0",
Expand Down
1 change: 0 additions & 1 deletion sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ export const sidebar = [
label: "Quaresma",
collapsed: true,
autogenerate: { directory: "missal/quaresma" },
badge: { text: "Tempo presente" },
},
{
label: "Páscoa",
Expand Down

0 comments on commit 36fdc43

Please sign in to comment.