5

有没有人设法让Tailwind.cssGatsby.js一起工作?

使用 Gatsby 配置 postCSS 插件有点棘手......如果有人设法让 Tailwind 与 Gatsby 一起运行,我很想知道如何!

4

4 回答 4

8

感谢这篇文章,我设法让这个工作(包括热重载)。

基本上我必须另外安装 postcss 和 autoprefixer:

npm install autoprefixer postcss-cli

postcss.config.js在 Gatsby 站点文件夹的根目录中添加了这个内容(tailwind.js 是我的 Tailwind 配置 - 你的可能命名不同):

const tailwindcss = require('tailwindcss');
module.exports = {
    plugins: [
        tailwindcss('./tailwind.js'),
        require('autoprefixer'),
    ],
};

然后我添加了一个 CSS 监视和构建脚本到我的package.json.,并将这些脚本包含在我的默认开发和构建脚本中:

"scripts": {
  "build:css": "postcss src/layouts/index.css -o src/layouts/generated.css",
  "watch:css": "postcss src/layouts/index.css -o src/layouts/generated.css -w",
  "build": "npm run build:css && gatsby build",
  "develop": "npm run watch:css & gatsby develop",
  ...
}

(请注意,我的 css 的输入(index.css)和输出(generated.css)文件名和位置特定于我的项目。随意使用您自己的约定。)

让我知道,如果这对你有用。

于 2018-02-08T20:15:00.717 回答
7

作为对 morgler 答案的补充,这是我最终得到的类似解决方案(包括 Sass 和 PurgeCSS)。

我选择了 CLI 解决方案,因为gatsby-plugin-postcss-sass目前在 Sass 之前运行 PostCSS(这会破坏 Tailwind),而且目前通过 Webpack 配置 Gatsby 的 PostCSS 插件有点困难。

我包括了 Sass,以便我可以分解main.sass成更易于管理的部分,并添加了 PurgeCSS,以便我可以删除生产中任何未使用的 Tailwinds 类。我发现 PurgeCSS 比 PurifyCSS 更有效,这就是我选择不使用gatsby-plugin-purify-css.

首先,创建一个src/styles具有以下结构的文件夹(随意为您的项目自定义它并相应地调整以下设置):

src/
  styles/
    builds/
      after-postcss/
        main.css
      after-purgecss/
        main.css
      after-sass/
        main.css
    // other subfolders for sass partials...
    main.sass

安装必要的依赖项:

npm i node-sass-chokidar postcss-cli purgecss

添加以下内容gatsby-node.js(以禁用 Gatsby 的默认 PostCSS 插件):

const ExtractTextPlugin = require('extract-text-webpack-plugin')

exports.modifyWebpackConfig = ({ config, stage }) => {
  switch (stage) {
    case 'develop':
      // Remove postcss from Gatsby's dev process:
      config.removeLoader(`css`)
      config.loader(`css`, {
        test: /\.css$/,
        loaders: [`style`, `css`]
      })

      break

    case 'build-css':
      // Remove postcss from Gatsby's build process:
      config.removeLoader(`css`)
      config.loader(`css`, {
        test: /after-purgecss\/main\.css/,
        loader: ExtractTextPlugin.extract([`css?minimize`])
      })

     break
  }
  return config
}

postcss.config.js文件添加到项目根目录:

const tailwind = require('tailwindcss')
const cssnext = require('postcss-cssnext')

module.exports = {
  plugins: [
    // your file's name or path may differ:
    tailwind('./src/styles/tailwind.config.js'), 
    cssnext()
    // add any other postcss plugins you like...
  ]
}

将以下脚本添加到package.json

"scripts": {
  "watch:sass": "node-sass-chokidar --source-map true src/styles/main.sass -o src/styles/builds/after-sass -w",
  "watch:postcss": "postcss src/styles/builds/after-sass/main.css -o src/styles/builds/after-postcss/main.css -w",
  "watch:styles": "npm run watch:sass & npm run watch:postcss",
  "build:sass": "node-sass-chokidar src/styles/main.sass -o src/styles/builds/after-sass",
  "build:postcss": "postcss src/styles/builds/after-sass/main.css -o src/styles/builds/after-postcss/main.css",
  "build:purgecss":
    "purgecss --css src/styles/builds/after-postcss/main.css --con public/index.html src/**/*.js -o src/styles/builds/after-purgecss",
  "build:styles": "npm run build:sass && npm run build:postcss && npm run build:purgecss",
  "develop": "gatsby develop & npm run watch:styles",
  "build": "npm run build:styles && gatsby build"
  // ...
},

在开发中,运行npm run develop而不是gatsby develop. watch:每当更改main.sass或其任何导入时,脚本将运行 Sass + PostCSS(按此顺序)。

要构建站点,请运行npm run build而不是gatsby build. 脚本将build:运行 Sass + PostCSS(没有监视任务)+ PurgeCSS(按此顺序)。

添加以下内容以layouts/index.js导入开发期间的版本和生产期间的after-postcss版本:main.cssafter-purgecss

switch (process.env.NODE_ENV) {
  case `development`:
    require('../styles/builds/after-postcss/main.css')
    break
  case `production`:
    require('../styles/builds/after-purgecss/main.css')
    break
}

希望对某人有所帮助!如果有人知道如何将其转换为适用于 Gatsby 的 Webpack 等价物,请随时在此处发布。

于 2018-02-09T22:46:16.010 回答
0

这是我的设置,并且与 Gatsby 完美配合:

tailwind.config.js

    module.exports = {
      mode: "jit",
      purge: [
        "./src/pages/**/*.{js,ts,jsx,tsx}",
        "./src/components/**/*.{js,ts,jsx,tsx}",
      ],

包.json

"scripts": {
    "develop": "gatsby develop",
    "start": "gatsby develop",
    "build": "gatsby build",
    "serve": "gatsby serve",
    "clean": "gatsby clean",
    "tw:build": "tailwindcss build ./src/styles/global.css -o ./public/styles/global.css",
    "tw:prod": "cross-env NODE_ENV=production postcss build ./src/styles/global.css -o ./public/styles/global.css",
    "tw:watch": "onchange \"tailwind.config.js\" \"src/**/*.css\" -- npm run tw:build"
  },

你也可以使用 cssnano,它是一个非常棒的用于清除顺风 css 的扩展

postcss.config.js

const cssnano = require("cssnano");

module.exports = {
  plugins: [
    require("tailwindcss"),
    cssnano({
      preset: "default",
    }),
    require("autoprefixer"),
  ],
};

此外,最新 Tailwind 版本所需的 devDependencies 包括:

package.json devDependencies

"devDependencies": {
    "autoprefixer": "^10.3.6",
    "gatsby-plugin-postcss": "^4.14.0",
    "postcss": "^8.3.9",
    "postcss-cli": "^9.0.1",
    "tailwindcss": "^2.2.17"
  }
}

还要确保将这些包含在 global.css 文件的顶部:

@tailwind base;
@tailwind components;
@tailwind utilities;
于 2021-10-24T22:10:22.480 回答
0

我最近将它添加到 Gatsby 入门默认设置之上,并编写了详细的分步指南。

https://www.michaelfasani.com/2020/installing-tailwind-css-on-top-of-the-gatsby-starter-default/

于 2020-08-05T16:52:45.350 回答