🦄 refactor: 重构整个项目 优化打包 修改后台服务为本地运行 添加更新版本检测功能

This commit is contained in:
alger
2025-01-01 02:25:18 +08:00
parent f8d421c9b1
commit 17d20fa299
260 changed files with 78557 additions and 1693 deletions

View File

@@ -1,6 +1,6 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
content: ['./src/renderer/index.html', './src/renderer/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
@@ -8,27 +8,27 @@ export default {
primary: {
DEFAULT: '#000',
light: '#fff',
dark: '#000',
dark: '#000'
},
secondary: {
DEFAULT: '#6c757d',
light: '#8c959e',
dark: '#495057',
dark: '#495057'
},
dark: {
DEFAULT: '#000',
100: '#161616',
200: '#2d2d2d',
300: '#3d3d3d',
300: '#3d3d3d'
},
light: {
DEFAULT: '#fff',
100: '#f8f9fa',
200: '#e9ecef',
300: '#dee2e6',
},
},
},
300: '#dee2e6'
}
}
}
},
plugins: [],
plugins: []
};