home-page-ui-abhay
v1.0.0
Published
When Host repo comes, Host should use:
Downloads
115
Readme
When Host repo comes, Host should use:
import { defineConfig } from "vite"; import react from "@vitejs/plugin-react"; import federation from "@originjs/vite-plugin-federation";
export default defineConfig({ plugins: [ react(), federation({ name: "host", remotes: { homePageApp: "http://localhost:5003/assets/remoteEntry.js", }, shared: ["react", "react-dom"], }), ], server: { port: 5173, }, });
