mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-22 17:57:46 +00:00
- Remove .claude from .gitignore - Update CSS file path in eslint config - Simplify VS Code extension title - Remove unused keybinding for openChat command - Delete unused auth constants file - Simplify ACP connection by removing backend parameter - Move authMethod to acpTypes - Restrict ACP backend to Qwen only - Remove backend property from connection state - Minor formatting update in webview index.tsx
22 lines
558 B
TypeScript
22 lines
558 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Qwen Team
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import ReactDOM from 'react-dom/client';
|
|
import { App } from './App.js';
|
|
|
|
// eslint-disable-next-line import/no-internal-modules
|
|
import './styles/tailwind.css';
|
|
// eslint-disable-next-line import/no-internal-modules
|
|
import './styles/App.css';
|
|
// eslint-disable-next-line import/no-internal-modules
|
|
import './styles/styles.css';
|
|
|
|
const container = document.getElementById('root');
|
|
if (container) {
|
|
const root = ReactDOM.createRoot(container);
|
|
root.render(<App />);
|
|
}
|