mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-29 20:11:04 +08:00
feat: add codex skills support and enhance system status UI
- Introduced new query keys for codex skills and their list. - Updated English and Chinese locale files for system status messages. - Enhanced the SettingsPage to display installation details and upgrade options. - Integrated CLI mode toggle in SkillsManagerPage for better skill management. - Modified skills routes to handle CLI type for skill operations and configurations.
This commit is contained in:
@@ -8,7 +8,9 @@ export default defineConfig({
|
||||
workers: process.env.CI ? 1 : undefined,
|
||||
reporter: 'html',
|
||||
use: {
|
||||
baseURL: 'http://localhost:5173/react/',
|
||||
// E2E runs the Vite dev server with a root base to keep route URLs stable in tests.
|
||||
// (Many tests use absolute paths like `/sessions` which should resolve to the app router.)
|
||||
baseURL: 'http://localhost:5173/',
|
||||
trace: 'on-first-retry',
|
||||
},
|
||||
projects: [
|
||||
@@ -27,7 +29,11 @@ export default defineConfig({
|
||||
],
|
||||
webServer: {
|
||||
command: 'npm run dev',
|
||||
url: 'http://localhost:5173/react/',
|
||||
url: 'http://localhost:5173/',
|
||||
env: {
|
||||
...process.env,
|
||||
VITE_BASE_URL: '/',
|
||||
},
|
||||
reuseExistingServer: !process.env.CI,
|
||||
timeout: 120 * 1000,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user