Skip to content

Commit

Permalink
docs: added a guide for deleting css files when they are not used (#298)
Browse files Browse the repository at this point in the history
Co-authored-by: Romain Dequidt <[email protected]>
  • Loading branch information
Jonghakseo and romaindequidt authored Nov 26, 2023
1 parent 8ce6579 commit 98be6d5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,17 @@ This boilerplate is made for creating chrome extensions using React and Typescri

## Add Style Library <a name="add-style-library"></a>

> IMPORTANT: If you DO NOT want to use css file in the content script, you need to delete the css file in your manifest.js
```js
content_scripts: [
{
// YOU NEED TO DELETE THIS
css: ["assets/css/contentStyle<KEY>.chunk.css"]
}
];
```

### Twind <a name="twind"></a>

> The smallest, fastest, most feature complete Tailwind-in-JS solution in existence
Expand Down

0 comments on commit 98be6d5

Please sign in to comment.