先提交上去

This commit is contained in:
Fox_block
2026-03-16 20:49:46 +08:00
parent 86abcb5602
commit 192b48cab0
303 changed files with 30019 additions and 5846 deletions
+26
View File
@@ -0,0 +1,26 @@
import type { CapacitorConfig } from '@capacitor/cli'
const config: CapacitorConfig = {
appId: 'com.sectl.secscore',
appName: 'SecScore',
webDir: 'out',
server: {
androidScheme: 'https'
},
plugins: {
Preferences: {
group: 'SecScore'
}
},
android: {
buildOptions: {
keystorePath: undefined,
keystorePassword: undefined,
keystoreAlias: undefined,
keystoreAliasPassword: undefined,
signingType: 'apksigner'
}
}
}
export default config