Skip to content

Commit bfc8ee7

Browse files
committed
Merge branch 'ep2025' into ep2025-ilikeit
2 parents 8453af2 + 244f834 commit bfc8ee7

File tree

21 files changed

+1251
-1332
lines changed

21 files changed

+1251
-1332
lines changed

astro.config.mjs

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import path from "path";
22
import { defineConfig } from "astro/config";
33
import mdx from "@astrojs/mdx";
44
import sitemap from "@astrojs/sitemap";
5-
import tailwind from "@astrojs/tailwind";
65
import remarkToc from "remark-toc";
76
import rehypeSlug from "rehype-slug";
87
import rehypeAutolinkHeadings from "rehype-autolink-headings";
@@ -12,6 +11,7 @@ import deleteUnusedImages from "astro-delete-unused-images";
1211
import { execSync } from "node:child_process";
1312
import svelte from "@astrojs/svelte";
1413
import compress from "astro-compress";
14+
import tailwindcss from "@tailwindcss/vite";
1515

1616
let gitVersion = String(process.env.GIT_VERSION ?? "").slice(0, 7);
1717

@@ -61,6 +61,7 @@ export default defineConfig({
6161
),
6262
__GIT_VERSION__: JSON.stringify(gitVersion),
6363
},
64+
6465
resolve: {
6566
alias: {
6667
"@utils": path.resolve("./src/utils"),
@@ -75,6 +76,8 @@ export default defineConfig({
7576
"@src": path.resolve("./src"),
7677
},
7778
},
79+
80+
plugins: [tailwindcss()],
7881
},
7982
markdown: {
8083
remarkPlugins: [
@@ -94,6 +97,7 @@ export default defineConfig({
9497
},
9598
],
9699
],
100+
plugins: [tailwindcss()],
97101
},
98102
site: process.env.SITE_URL || "https://ep2025.europython.eu",
99103
redirects: {
@@ -110,14 +114,13 @@ export default defineConfig({
110114
integrations: [
111115
mdx(),
112116
sitemap(),
113-
tailwind({
114-
nesting: true,
115-
}),
116117
metaTags(),
117118
pagefind(),
118119
deleteUnusedImages(),
119120
svelte(),
120121
compress({
122+
HTML: false,
123+
CSS: false,
121124
SVG: false,
122125
}),
123126
dontDie(),

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,39 +13,39 @@
1313
"dependencies": {
1414
"@astro-community/astro-embed-youtube": "^0.5.6",
1515
"@astrojs/check": "^0.9.4",
16-
"@astrojs/mdx": "^4.2.6",
17-
"@astrojs/sitemap": "^3.3.1",
16+
"@astrojs/mdx": "^4.3.0",
17+
"@astrojs/sitemap": "^3.4.0",
1818
"@astrojs/svelte": "^7.0.13",
19-
"@astrojs/tailwind": "^5.1.5",
2019
"@astrojs/ts-plugin": "^1.10.4",
2120
"@fortawesome/fontawesome-free": "^6.7.2",
2221
"@tailwindcss/typography": "^0.5.16",
23-
"astro": "^5.7.5",
22+
"@tailwindcss/vite": "^4.1.7",
23+
"astro": "^5.8.0",
2424
"astro-compress": "^2.3.8",
2525
"astro-delete-unused-images": "^1.0.3",
26-
"astro-meta-tags": "^0.3.1",
26+
"astro-meta-tags": "^0.3.2",
2727
"astro-pagefind": "^1.8.3",
2828
"astro-preload": "^1.1.2",
2929
"clsx": "^2.1.1",
3030
"date-fns": "^4.1.0",
3131
"date-fns-tz": "^3.2.0",
3232
"hastscript": "^9.0.1",
3333
"js-yaml": "^4.1.0",
34-
"marked": "^15.0.11",
34+
"marked": "^15.0.12",
3535
"pagefind": "^1.3.0",
3636
"rehype-autolink-headings": "^7.1.0",
3737
"rehype-slug": "^6.0.0",
3838
"remark-toc": "^9.0.0",
39-
"sharp": "^0.34.1",
39+
"sharp": "^0.34.2",
4040
"svelte": "^5.30.2",
41-
"tailwindcss": "^3.4.17",
41+
"tailwindcss": "^4.1.7",
4242
"typescript": "^5.8.3"
4343
},
4444
"devDependencies": {
4545
"@types/js-yaml": "^4.0.9",
4646
"prettier": "^3.5.3",
4747
"prettier-plugin-astro": "^0.14.1",
48-
"puppeteer": "^24.7.2",
48+
"puppeteer": "^24.9.0",
4949
"tsx": "^4.19.4",
5050
"typescript": "^5.8.3"
5151
},

0 commit comments

Comments
 (0)