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

chore: 基础更新.

上级 685036e2
.DS_Store
node_modules
dist
.vite
# local env files
.env.local
......@@ -20,3 +21,11 @@ pnpm-debug.log*
*.njsproj
*.sln
*.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 = {
darkMode: "media", // or 'media' or 'class'
theme: {
extend: {},
backgroundColor: (theme) => ({
...theme("colors"),
orange: "#ea5529",
}),
textColor: (theme) => ({
...theme("colors"),
orange: "#ea5529",
}),
},
plugins: [],
};
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论