码迷,mamicode.com
首页 > 其他好文 > 详细

tailwiind init

时间:2019-08-25 15:38:48      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:ack   ref   roc   base   ESS   content   cli   config   exp   

 

1. init

npm init -y

npm install tailwindcss  postcss-cli  autoprefixer

npx tailwind init

 

2. postcss.config.js

const purgecss = require(@fullhuman/postcss-purgecss)({

    content: [
        ./src/**/*.html,
                ./src/**/*.vue,   
    ],

    defaultExtractor: content => content.match(/[A-Za-z0-9-_:/]+/g) || []
})

module.exports = {
    plugins: [
        require(tailwindcss),
        require(autoprefixer),
        ...process.env.NODE_ENV === production
            ? [purgecss]
            : []
    ]
}

 

3. src/css/tailwind.css

@tailwind base;

@tailwind components;

@tailwind utilities;

 

4. package.json

  "scripts": {
    "dev": "postcss src/css/tailwind.css -o  public/css/all.css"
  },

 

5. public/index.html

    <title>index</title>
  <link rel="stylesheet" href="./css/all.css">
<body>
 
    <h1 class="text-xl font-bold text-blue-500 text-center">Hello World!</h1>
 


 

tailwiind init

标签:ack   ref   roc   base   ESS   content   cli   config   exp   

原文地址:https://www.cnblogs.com/fenle/p/11407969.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!