반응형
1. 설치
npm install -D tailwindcss@latest postcss@latest autoprefixer@latest
2. 활성화
npx tailwindcss init -p
3. ./tailwind.config.js환경설정
module.exports = {
// content: [
// "./index.html",
// "./src/**/*.{vue,js,ts,jsx,tsx}",
// ],
purge:[
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}"
],
theme: {
extend: {},
},
plugins: [],
}
4. src/index.css 파일 생성
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
5. src/main.js적용
import { createApp } from 'vue'
import App from './App.vue'
import './index.css'
createApp(App)
.mount('#app')
반응형
'Programming > Vue' 카테고리의 다른 글
Vue 프로젝트 - Movie페이지 단일영화 상세정보 및 skeleton UI작성 (0) | 2022.05.22 |
---|---|
Vue 영화검색사이트 기본 설치 파일 (0) | 2022.05.14 |
Vue apache 배포 오류 (0) | 2022.05.12 |
Vue3 프로젝트 - Vue시작하기: Fruit List(Vuex예제) (0) | 2021.08.24 |
Vue 프로젝트 만들기 - with Webpack Template (0) | 2021.05.21 |