@mbao01/next 0.1.3 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -30,15 +30,11 @@ npm install @mbao01/next
30
30
  3. Configure tailwind
31
31
 
32
32
  ```typescript
33
- export default {
34
- content: [
35
- "node_modules/@mbao01/(common|next)/src/**/*", // -> ensure to add this to allow tailwind to scan the library for classes
36
- ...
37
- ],
38
- "plugins": [
39
- ...require("@mbao01/common/plugin"), // -> import the tailwind library plugin
40
- ]
41
- }
33
+ import "@mbao01/common/styles";
34
+ ```
35
+
36
+ ```css
37
+ @import '@mbao01/common/styles';
42
38
  ```
43
39
 
44
40
  You can also import styles directly from `@mbao01/common/styles`. Use this in-place of `tailwind.css` if you wish.