mirror of
https://github.com/setube/ogame-vue-ts.git
synced 2026-05-11 23:45:11 +08:00
集成Android平台相关目录与配置文件,包含Gradle构建脚本、资源文件、启动图标、Java入口、Proguard规则等,完善.gitignore以排除Android构建产物。更新CI流程,支持自动构建并发布Android APK。移除README中项目结构说明,简化文档。
16 lines
364 B
JavaScript
16 lines
364 B
JavaScript
export default {
|
|
plugins: {
|
|
'postcss-preset-env': {
|
|
stage: 2,
|
|
features: {
|
|
'oklab-function': { preserve: true },
|
|
'color-mix': true,
|
|
'custom-selectors': true,
|
|
'nesting-rules': true,
|
|
'is-pseudo-class': false
|
|
},
|
|
browsers: ['Chrome >= 80', 'Firefox >= 80', 'Safari >= 14', 'Edge >= 80']
|
|
}
|
|
}
|
|
}
|