Replies: 4 comments
-
Could you provide a reproduction please? It could be an incompatible plugin or other incompatible code in the JS config. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@import "tailwindcss";
@config "../../../tailwind.config.js";
@font-face {
font-family: "Cal Sans";
font-style: normal;
font-display: swap;
font-weight: 600;
src: url("./fonts/webfonts/CalSans-SemiBold.woff2") format("woff2"),
url("./fonts/webfonts/CalSans-SemiBold.woff") format("woff"),
url("./fonts/webfonts/CalSans-SemiBold.ttf") format("truetype");
} module.exports = {
content: [
"./node_modules/preline/**/*",
"./src/public/css/**/*",
"./src/views/**/*",
],
theme: {
extend: {
fontFamily: {
cal: ["Cal Sans"],
},
},
},
plugins: [require("preline/plugin")],
}; been using preline for a while, no issues |
Beta Was this translation helpful? Give feedback.
0 replies
-
Could you provide a reproduction please? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Same here, any workaround? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When i have @config directive inside my css file i get
PS C:\Users\Ducky\cloudable\MovieHUB> npx @tailwindcss/cli -i "./src/public/css/globals.css" -o "./src/public/css/tailwind.css"
TypeError: i.includes is not a function
Beta Was this translation helpful? Give feedback.
All reactions