8 lines
300 B
JavaScript
8 lines
300 B
JavaScript
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
// Design Guideline packages are linked during development. Their own React
|
|
// must never become a second hook dispatcher in the portable production bundle.
|
|
resolve: { dedupe: ["react", "react-dom", "@nodedc/ui-react"] },
|
|
});
|