This commit is contained in:
Sakurasan
2023-04-08 22:57:24 +08:00
parent 312a0b48dc
commit a431cc19c5
26 changed files with 2070 additions and 517 deletions

25
README.md Normal file
View File

@@ -0,0 +1,25 @@
npm create vite@latest frontend -- --template vue
npm install -D tailwindcss@latest postcss@latest autoprefixer@latest
npx tailwindcss init -p
//tailwind.config.js
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}
//style.css
@tailwind base;
@tailwind components;
@tailwind utilities;