提交 bc543f9e authored 作者: ziwencao's avatar ziwencao

chore: 基础更新.

上级 685036e2
.DS_Store .DS_Store
node_modules node_modules
dist dist
.vite
# local env files # local env files
.env.local .env.local
...@@ -20,3 +21,11 @@ pnpm-debug.log* ...@@ -20,3 +21,11 @@ pnpm-debug.log*
*.njsproj *.njsproj
*.sln *.sln
*.sw? *.sw?
# flie
components.d.ts
auto-imports.d.ts
#yaml
pnpm-lock.yaml*
yarn.lock*
// 网站网址
export default function basePublicUrl(src = "") {
const { VITE_PUBLIC_PATH } = import.meta.env;
if (src) {
return `${VITE_PUBLIC_PATH}${src}`;
}
return VITE_PUBLIC_PATH as string;
}
...@@ -6,6 +6,14 @@ module.exports = { ...@@ -6,6 +6,14 @@ module.exports = {
darkMode: "media", // or 'media' or 'class' darkMode: "media", // or 'media' or 'class'
theme: { theme: {
extend: {}, extend: {},
backgroundColor: (theme) => ({
...theme("colors"),
orange: "#ea5529",
}),
textColor: (theme) => ({
...theme("colors"),
orange: "#ea5529",
}),
}, },
plugins: [], plugins: [],
}; };
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论