Tailwind css 在部署时不工作
Tailwind css not working while its deployed
我在我的 next.js 应用程序中安装了 tailwind,它在我的本地主机上运行
但是当我将它部署到 vercel 或构建它并 运行 它时,它不使用 tailwind 类 并且它看起来像 tailwind 在我部署时没有安装。
这是我的包裹json
{
"name": "portofilo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"bootstrap": "^5.1.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"next": "11.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.2.0",
"react-typed": "^1.2.0",
"react-vertical-timeline-component": "^3.3.3",
"styled-components": "^5.3.0",
"styled-normalize": "^8.0.7",
"postcss-import": "^14.0.2"
},
"devDependencies": {
"autoprefixer": "^10.3.1",
"postcss": "^8.3.6",
"postcss-import": "^14.0.2",
"tailwindcss": "^2.2.7"
}
}
顺便说一句,我将 devDependencies 移到了依赖项,但仍然无法正常工作
确保在 tailwind.config.js 文件
中正确配置了清除
应该是这样的:
purge: [ "./src/pages/**/*.{js,ts,jsx,tsx}", "./src/components/**/*.{js,ts,jsx,tsx}", ],
我刚刚将这行代码添加到我的 tailwind 配置文件中并且它起作用了!
已启用:process.env.NODE_ENV ===“生产”,
我在我的 next.js 应用程序中安装了 tailwind,它在我的本地主机上运行 但是当我将它部署到 vercel 或构建它并 运行 它时,它不使用 tailwind 类 并且它看起来像 tailwind 在我部署时没有安装。
这是我的包裹json
{
"name": "portofilo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"bootstrap": "^5.1.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"next": "11.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.2.0",
"react-typed": "^1.2.0",
"react-vertical-timeline-component": "^3.3.3",
"styled-components": "^5.3.0",
"styled-normalize": "^8.0.7",
"postcss-import": "^14.0.2"
},
"devDependencies": {
"autoprefixer": "^10.3.1",
"postcss": "^8.3.6",
"postcss-import": "^14.0.2",
"tailwindcss": "^2.2.7"
}
}
顺便说一句,我将 devDependencies 移到了依赖项,但仍然无法正常工作
确保在 tailwind.config.js 文件
中正确配置了清除应该是这样的:
purge: [ "./src/pages/**/*.{js,ts,jsx,tsx}", "./src/components/**/*.{js,ts,jsx,tsx}", ],
我刚刚将这行代码添加到我的 tailwind 配置文件中并且它起作用了!
已启用:process.env.NODE_ENV ===“生产”,