feat(core): Implements core configuration file generation functionality

- Adds the bootArgs.ts utility module for generating and deleting configuration files
- Integrates configuration file generation and cleanup logic into spary.vue
- Integrates the tauri-plugin-fs plugin to support file system operations
- Adds a Linux system proxy configuration script
This commit is contained in:
2025-10-21 15:37:04 +08:00
parent 2b8f09b4b2
commit 462f70f35d
17 changed files with 731 additions and 56 deletions

View File

@@ -10,7 +10,7 @@ const messages = {
const i18n = createI18n({
legacy: false, // Use composition API mode
locale: 'en', // Default locale
fallbackLocale: 'en', // Fallback locale
fallbackLocale: 'zh', // Fallback locale
messages
})