c9cf644ac5
- 添加 build-and-push.sh 脚本用于自动化构建和推送 Docker 镜像 - 更新 .dockerignore 排除 pnpm-workspace.yaml - 更新项目依赖和配置文件
18 lines
329 B
JavaScript
Executable File
18 lines
329 B
JavaScript
Executable File
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./app/**/*.{js,vue,ts}"
|
|
],
|
|
theme: {
|
|
extend: {
|
|
width: {
|
|
'page-container': 'var(--page-container--width)',
|
|
},
|
|
maxWidth: {
|
|
'page-container': 'var(--page-container--width)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|