Skip to content

Commit 8ef631a

Browse files
committed
Update configuration
1 parent 2209bd7 commit 8ef631a

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

docs/start/configuration.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@ return [
3636

3737
If you find that Tailwind's CSS purge is removing styles that are needed, you have to tell Tailwind to look for the table styles so it knows not to purge them.
3838

39-
In your tailwind.config.js purge configuration:
39+
In your tailwind.config.js configuration:
4040

4141
```js
42+
// V2
4243
module.exports = {
4344
mode: 'jit',
4445
purge: [
@@ -47,6 +48,15 @@ module.exports = {
4748
],
4849
...
4950
};
51+
52+
// V3
53+
module.exports = {
54+
content: [
55+
...
56+
'./vendor/rappasoft/laravel-livewire-tables/resources/views/**/*.blade.php',
57+
],
58+
...
59+
};
5060
```
5161

5262
## Alpine.js Cloak

0 commit comments

Comments
 (0)