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

feat: migrate to nuxt-og-image #1400

Merged
merged 29 commits into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
3c06108
feat: migrate to `nuxt-og-image`
danielroe Apr 9, 2024
49ed205
chore: apply automated fixes
autofix-ci[bot] Apr 9, 2024
054a39a
chore: default prerender config
danielroe Apr 9, 2024
691984b
chore: remove log
danielroe Apr 9, 2024
a393756
chore: disable runtime support for og image
danielroe Apr 9, 2024
19dd285
chore: apply automated fixes
autofix-ci[bot] Apr 9, 2024
a363149
chore: disable css-inlining as well at runtime
danielroe Apr 9, 2024
35946c4
chore: apply automated fixes
autofix-ci[bot] Apr 9, 2024
3f8b696
fix: don't add og image templates
danielroe Apr 9, 2024
ec7d319
fix: avoid installing unneeded nitro plugins
danielroe Apr 9, 2024
07c9812
perf: purge og-image endpoints
danielroe Apr 9, 2024
44b8570
chore: apply automated fixes
autofix-ci[bot] Apr 9, 2024
b21c175
chore: remove empty line
danielroe Apr 9, 2024
cddbf6c
chore: bump og image module
danielroe Apr 9, 2024
ca36f01
chore: apply automated fixes
autofix-ci[bot] Apr 9, 2024
5f617c1
fix: hint to prerender og images
danielroe Apr 9, 2024
7ffaabd
fix: update file path
danielroe Apr 9, 2024
2c211f2
fix: absolute path
danielroe Apr 9, 2024
87e3831
chore: apply automated fixes
autofix-ci[bot] Apr 9, 2024
6dfb455
Merge remote-tracking branch 'origin/main' into feat/og-image
danielroe May 13, 2024
0658ff0
chore: bump `nuxt-og-image`
danielroe May 13, 2024
9740360
chore: apply automated fixes
autofix-ci[bot] May 13, 2024
c53a9eb
chore: lint
danielroe May 13, 2024
5710dbe
test: normalise og urls in testing
danielroe May 13, 2024
d491a78
test: ensure trailing slash
danielroe May 13, 2024
77ab55c
perf: purge nuxt-site-config handlers
danielroe May 13, 2024
f646f06
chore: apply automated fixes
autofix-ci[bot] May 13, 2024
e773ba4
chore: bump stylesheet size
danielroe May 13, 2024
1781bf6
test: update og image snapshots
danielroe May 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,19 @@ export default defineNuxtConfig({
},
},

site: {
url: 'https://roe.dev',
},

ogImage: {
fonts: [
'Barlow:400',
'Barlow:600',
],
},

modules: [
'nuxt-og-image',
danielroe marked this conversation as resolved.
Show resolved Hide resolved
'@nuxt/eslint',
'nuxt-time',
'@nuxt/test-utils/module',
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
"masto": "^6.7.0",
"mlly": "^1.6.1",
"nuxt": "3.11.2",
"nuxt-og-image": "3.0.0-beta.59",
"nuxt-time": "^0.1.3",
"partykit": "0.0.102",
"partysocket": "^1.0.1",
Expand Down
Loading
Loading