Gyh's blog

vuePress-theme-reco gyh    2022
Gyh's blog Gyh's blog

Choose mode

  • dark
  • auto
  • light
Home
Category
  • Algorithm
  • CSS
  • JavaScript
  • Others
  • Server
  • Utils
  • Article
  • Note
  • Git
  • Npm
  • Standard
  • Summary
Tag
Timeline
About
GitHub
author-avatar

gyh

91

Article

11

Tag

Home
Category
  • Algorithm
  • CSS
  • JavaScript
  • Others
  • Server
  • Utils
  • Article
  • Note
  • Git
  • Npm
  • Standard
  • Summary
Tag
Timeline
About
GitHub

tailwind

vuePress-theme-reco gyh    2022

tailwind

gyh 2019-10-09 tailwind

1.安装

npm install tailwindcss
1

2.配置 main.js

import 'tailwindcss/tailwind.css'
1

3.创建 Tailwind 配置文件

npx tailwind init
1

4.配置 vue.config.js 文件

module.exports = {
  css: {
    loaderOptions: {
      postcss: {
        plugins: [require("tailwindcss"), require("autoprefixer")],
      },
    },
  },
}
1
2
3
4
5
6
7
8
9
Edit on GitHub~
LastUpdated: 5/17/2022, 8:59:22 AM