Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bug]: #79

Open
TMSchipper opened this issue Feb 6, 2025 · 0 comments
Open

[bug]: #79

TMSchipper opened this issue Feb 6, 2025 · 0 comments
Labels
issue: bug Issue reporting a bug

Comments

@TMSchipper
Copy link

What version of @strapi/sdk-plugin are you using?

-Strapi V5
-@strapi/[email protected]
[email protected]

What's Wrong?

I'm trying to load a style.css file to customize some elements in my Strapi plugin, but the file is not being rendered or loaded in the DOM.

I've created a component with an associated CSS file and imported it into my .tsx file. When I build the project, both files are included in the dist folder, but the styles are not applied in the Strapi admin panel.

Image

Do you have any suggestions on how I can properly load my CSS in Strapi?

To Reproduce

  1. Create a com1ponent with a CSS file

Add a MyComponent.tsx file inside the admin/src/components folder.
Add a style.css file inside the same folder.
Import the CSS file in the component

  1. Import css
import "./style.css";

const MyComponent = () => {
    return <div className="custom-style">This is my component</div>;
};

export default MyComponent;

Ensure the CSS file is included in the build output

3/Ensure the CSS file is included in the build output
Run "yarn run watch:link" in the plugin repository to watch for changes.

4.Run Strapi and check the Admin UI
In a separate Strapi project, install the plugin via yalc add strapi-plugin-name.
Start Strapi with "yarn run develop".
Navigate to the plugin interface in the Strapi Admin Panel.
Observe that the styles from style.css are not applied.

Expected Behaviour

The style.css file should be loaded and applied to the component in the Strapi Admin Panel.

@TMSchipper TMSchipper added the issue: bug Issue reporting a bug label Feb 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
issue: bug Issue reporting a bug
Projects
None yet
Development

No branches or pull requests

1 participant