我使用tailwind css来构建我的nextjs应用程序,所以我从tailwind ui复制了这个模板,它说要让它正常工作我必须..
{/*
This example requires updating your template:
```
<html class="h-full">
<body class="h-full">
```
*/}
我不确定我必须在哪里更新它。这就是我的 tailwind.config.js 的样子,
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
};
如果你们能帮我一把,我将不胜感激,谢谢!