打包改为vite

This commit is contained in:
none
2023-03-23 16:17:50 +08:00
parent 6af892c7e5
commit e7421f67cc
33 changed files with 454 additions and 1778 deletions

27
src/main.tsx Normal file
View File

@@ -0,0 +1,27 @@
import ReactDOM from "react-dom/client";
import "./index.less";
import App from "./App";
import reportWebVitals from "./reportWebVitals";
import { BrowserRouter } from "react-router-dom";
import { Provider } from "react-redux";
import store from "./store/store";
import { ConfigProvider } from "antd";
import zhCN from "antd/locale/zh_CN";
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<Provider store={store}>
<ConfigProvider
locale={zhCN}
theme={{ token: { colorPrimary: "#ff4d4f" } }}
>
<BrowserRouter>
<App />
</BrowserRouter>
</ConfigProvider>
</Provider>
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();