mirror of
https://github.com/LiuYuYang01/ThriveX-Blog.git
synced 2026-05-07 22:27:37 +08:00
refactor(tailwind.config.ts): 更新文件中的引号样式
将 `tailwind.config.ts` 文件中的双引号统一替换为单引号,以保持代码风格的一致性。具体修改包括导入语句和配置项中的路径字符串。```plaintext refactor(tailwind.config.ts): 更新文件中的引号样式 将 `tailwind.config.ts` 文件中的双引号统一替换为单引号, 以保持代码风格的一致性。具体修改包括导入语句和配置项中的路径字符串。 ```
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
import { heroui } from "@heroui/react";
|
||||
import type { Config } from "tailwindcss";
|
||||
import { heroui } from '@heroui/react';
|
||||
import type { Config } from 'tailwindcss';
|
||||
|
||||
const config: Config = {
|
||||
content: [
|
||||
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
"./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}"
|
||||
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
||||
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
|
||||
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
||||
'./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}'
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
@@ -23,12 +23,12 @@ const config: Config = {
|
||||
}
|
||||
},
|
||||
},
|
||||
darkMode: "class",
|
||||
darkMode: 'class',
|
||||
plugins: [heroui({
|
||||
themes: {
|
||||
dark: {
|
||||
colors: {
|
||||
background: "#232931",
|
||||
background: '#232931',
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user