Open
Description
When using the same configuration of this repo, all fixtures seem to be packaged on the same page. If there are global styles, they will affect each other. How to modify the configuration to render the components in the fixture as independent pages?
// style.css
body {
background: skyblue;
}
// A.fixture.jsx
"use client";
import "./style.css";
export default function A() {
return <div>Hello</div>;
}
// B.fixture.jsx
"use client";
export default function B() {
return <div>World</div>;
}
Metadata
Metadata
Assignees
Labels
No labels