将下一个js网站部署到vercel时,无效的PostCSS插件错误

时间:2020-07-22 16:42:11

标签: next.js postcss vercel

我正在尝试将使用下一个js(和tailwindcss)构建的网站部署到vercel。但是我一直收到此“无效的PostCSS插件”错误”。

Error shown in the vercel log

在本地完全可以正常运行。 我正在尝试通过从github导入来部署站点。

我的postcss.config.js

    module.exports = {
       plugins: ['postcss-import', 'tailwindcss', 'autoprefixer']
    }

我的package.json

{
  "name": "community-site",
  "version": "1.0.0",
  "description": "website for Education and Sports Club",
  "main": "index.js",
  "dependencies": {
    "autoprefixer": "^9.8.4",
    "axios": "^0.19.2",
    "cosmicjs": "^3.2.48",
    "express": "^4.17.1",
    "lodash": "^4.17.19",
    "moment": "^2.27.0",
    "next": "^9.4.4",
    "npm-run-all": "^4.1.5",
    "postcss-cli": "^7.1.1",
    "postcss-import": "^12.0.1",
    "react": "^16.13.1",
    "react-dom": "^16.13.1",
    "react-toastify": "^6.0.8",
    "tailwindcss": "^1.4.6"
  },
  "devDependencies": {
    "nodemon": "^2.0.4"
  },
  "scripts": {
    "build:tailwind": "postcss styles/tailwind.css -o styles/tailwind.generated.css",
    "watch:tailwind": "postcss -w styles/tailwind.css -o styles/tailwind.generated.css",
    "start": "run-p watch:tailwind start:next",
    "start:next": "next start",
    "dev": "next",
    "prebuild": "npm run build:tailwind",
    "build": "next build"
  },
  "author": "Salvator",
  "license": "ISC"
}

0 个答案:

没有答案