18 lines
382 B
TypeScript
18 lines
382 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
build: {
|
|
rollupOptions: {
|
|
output: {
|
|
// manualChunks 配置
|
|
manualChunks: {
|
|
// 将 React 相关库打包成单独的 chunk 中
|
|
"react-vendor": ["react", "react-dom"],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|