feat: 添加Tailwind CSS支持并修复URL拼接问题

添加Tailwind CSS及相关配置
修复多个爬虫服务中的URL拼接问题,避免双斜杠
调整前端导航菜单项顺序
This commit is contained in:
dmy
2026-01-13 18:07:00 +08:00
parent b261ff074c
commit b3d784f1e3
16 changed files with 43 additions and 21 deletions

View File

@@ -105,10 +105,11 @@ export const ChdtpCrawler = {
const dateStr = match[5]?.trim();
if (title && urlSuffix) {
const fullUrl = this.baseUrl + urlSuffix;
results.push({
title,
publishDate: dateStr ? new Date(dateStr) : new Date(),
url: this.baseUrl + urlSuffix
url: fullUrl.replace(/\/\//g, '/')
});
}
}