Updated rss.mjs
All checks were successful
Build and Deploy docker container / build (push) Successful in 2m47s
All checks were successful
Build and Deploy docker container / build (push) Successful in 2m47s
This commit is contained in:
parent
ee6e9789bb
commit
b10348b15a
@ -1 +1 @@
|
|||||||
{"python":1,"projects":1,"code":1,"cygnus":1,"self-hosted":1,"server":1}
|
{"cygnus":1,"self-hosted":1,"server":1,"python":1,"projects":1,"code":1}
|
2
next-env.d.ts
vendored
2
next-env.d.ts
vendored
@ -2,4 +2,4 @@
|
|||||||
/// <reference types="next/image-types/global" />
|
/// <reference types="next/image-types/global" />
|
||||||
|
|
||||||
// NOTE: This file should not be edited
|
// NOTE: This file should not be edited
|
||||||
// see https://nextjs.org/docs/basic-features/typescript for more information.
|
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
|
||||||
|
@ -3,7 +3,8 @@ import path from 'path'
|
|||||||
import { slug } from 'github-slugger'
|
import { slug } from 'github-slugger'
|
||||||
import { escape } from 'pliny/utils/htmlEscaper.js'
|
import { escape } from 'pliny/utils/htmlEscaper.js'
|
||||||
import siteMetadata from '../data/siteMetadata.js'
|
import siteMetadata from '../data/siteMetadata.js'
|
||||||
import tagData from '../app/tag-data.json' assert { type: 'json' }
|
// Do not accept changes from upstream, you need with instead of assert. See https://stackoverflow.com/questions/78876691/syntaxerror-unexpected-identifier-assert-on-json-import-in-node-v22
|
||||||
|
import tagData from '../app/tag-data.json' with { type: 'json' }
|
||||||
import { allBlogs } from '../.contentlayer/generated/index.mjs'
|
import { allBlogs } from '../.contentlayer/generated/index.mjs'
|
||||||
import { sortPosts } from 'pliny/utils/contentlayer.js'
|
import { sortPosts } from 'pliny/utils/contentlayer.js'
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user