Skip to content

Commit

Permalink
added schedule page title and updated prettier config
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienR1 committed Feb 16, 2025
1 parent 622fbe7 commit cb0eed2
Show file tree
Hide file tree
Showing 24 changed files with 1,055 additions and 905 deletions.
3 changes: 0 additions & 3 deletions packages/web/.prettierrc.json

This file was deleted.

6 changes: 3 additions & 3 deletions packages/web/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ import tailwind from "@astrojs/tailwind";

// https://astro.build/config
export default defineConfig({
site: "https://trampolineintercite.com",
integrations: [sitemap(), tailwind()],
});
site: "https://trampolineintercite.com",
integrations: [sitemap(), tailwind()],
});
17 changes: 16 additions & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"lint": "astro check",
"lint": "tsc --noEmit && prettier -c . && astro check",
"lint:fix": "prettier -w .",
"astro": "astro",
"test": "vitest"
},
Expand All @@ -24,5 +25,19 @@
"prettier-plugin-astro": "^0.14.1",
"tailwind-merge": "^3.0.1",
"vitest": "^3.0.4"
},
"prettier": {
"tabWidth": 4,
"plugins": [
"prettier-plugin-astro"
],
"overrides": [
{
"files": "*.astro",
"options": {
"parser": "astro"
}
}
]
}
}
Loading

0 comments on commit cb0eed2

Please sign in to comment.