Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
amorey authored Nov 9, 2024
1 parent c332a58 commit e9957be
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,22 @@ Open [http://localhost:6006](http://localhost:6006) in your browser to see the c
1. Install `kubetail-ui` package (replace X.Y.Z with desired version)

```bash
pnpm add git+ssh://[email protected]/kubetail-org/kubetail-ui.git#vX.Y.Z
pnpm add -D @kubetail/ui
```

2. Modify your Tailwind config file

```javascript
module.exports = {
import kubetailUIPlugin from '@kubetail/ui/plugin';

export default {
content: [
...
"./node_modules/kubetail-ui/esm/*.js"
'./node_modules/@kubetail/ui/**/*.js',
],
plugins: [
...
require('kubetail-ui/plugin')
]
}
kubetailUIPlugin,
],
};
```

0 comments on commit e9957be

Please sign in to comment.