File tree 5 files changed +20
-5
lines changed
5 files changed +20
-5
lines changed Original file line number Diff line number Diff line change
1
+ ## [ v3.0.1] ( https://github.com/ansidev/leetcode-blog/compare/v3.0.0...v3.0.1 ) (2025-05-01)
2
+
3
+ ### Bug Fixes
4
+
5
+ - error while rendering page ` /rss.xml `
6
+
7
+ Full Changelog: [ v3.0.0...v3.0.1] ( https://github.com/ansidev/leetcode-blog/compare/v3.0.0...v3.0.1 )
Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ ) and this project adheres to [ Semantic Versioning] ( http://semver.org ) .
6
6
7
+ ## [ v3.0.1] ( https://github.com/ansidev/leetcode-blog/compare/v3.0.0...v3.0.1 ) (2025-05-01)
8
+
9
+ ### Bug Fixes
10
+
11
+ - error while rendering page ` /rss.xml `
12
+
13
+ Full Changelog: [ v3.0.0...v3.0.1] ( https://github.com/ansidev/leetcode-blog/compare/v3.0.0...v3.0.1 )
14
+
7
15
## [ v3.0.0] ( https://github.com/ansidev/leetcode-blog/compare/v2.2.7...v3.0.0 ) (2025-05-01)
8
16
9
17
### Bug Fixes
Original file line number Diff line number Diff line change 2
2
"name" : " leetcode-blog" ,
3
3
"description" : " Solutions for LeetCode problems - Written by ansidev" ,
4
4
"type" : " module" ,
5
- "version" : " 3.0.0 " ,
5
+ "version" : " 3.0.1 " ,
6
6
"license" : " MIT" ,
7
7
"packageManager" :
" [email protected] " ,
8
8
"scripts" : {
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ import rss from '@astrojs/rss'
2
2
import type { APIContext } from 'astro'
3
3
import { getCollection } from 'astro:content'
4
4
5
- import siteConfig from '@/configs/site'
5
+ import siteConfig from '@/configs/site.ts '
6
6
7
7
const { title, description } = siteConfig
8
8
9
- export const get = async ( { site } : APIContext ) => {
9
+ export const GET = async ( { site } : APIContext ) => {
10
10
if ( site === undefined || site . toString ( ) . length === 0 ) {
11
11
return {
12
12
body : ''
Original file line number Diff line number Diff line change 1
1
{
2
2
"extends" : " astro/tsconfigs/strictest" ,
3
3
"compilerOptions" : {
4
- "module" : " Node16 " ,
5
- "moduleResolution" : " Node16 " ,
4
+ "module" : " NodeNext " ,
5
+ "moduleResolution" : " NodeNext " ,
6
6
"strict" : true ,
7
7
"verbatimModuleSyntax" : true ,
8
8
"baseUrl" : " ." ,
You can’t perform that action at this time.
0 commit comments