Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BO01 - Create a layout for the BackOffice #170

Merged
merged 13 commits into from
May 22, 2024
7 changes: 6 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@ import react from "@astrojs/react";
import tailwind from "@astrojs/tailwind";
import nodejs from "@astrojs/node";
import astroI18next from "astro-i18next";
import icon from "astro-icon";

// https://astro.build/config
export default defineConfig({
site: "https://devfest.gdgpescara.it",
integrations: [react(), tailwind(), astroI18next()],
integrations: [icon({
include: {
mdi: ["*"], // (Default) Loads entire Material Design Icon set
},
}),react(), tailwind(), astroI18next()],
output: "hybrid",
adapter: nodejs({
mode: "standalone",
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"astro": "^4.2.4",
"astro-firebase": "^0.0.3",
"astro-i18next": "1.0.0-beta.21",
"astro-icon": "^1.1.0",
"clsx": "^2.1.0",
"daisyui": "^4.7.2",
"dotenv": "^16.4.5",
Expand All @@ -39,6 +40,8 @@
},
"devDependencies": {
"@astrojs/react": "^3.0.9",
"@iconify-json/mdi": "^1.1.66",
"@mdi/font": "^7.4.47",
"@playwright/test": "^1.41.2",
"@types/google.maps": "^3.54.9",
"@types/node": "^20.11.17",
Expand Down
Loading
Loading