使用Mix,Tailwind,更改对应样式

This commit is contained in:
2022-07-14 13:07:10 +08:00
parent 23dfef114e
commit eab7f1f3aa
20 changed files with 5483 additions and 145 deletions

13
tailwind.config.js Normal file
View File

@ -0,0 +1,13 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
purge: [
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
content: [],
theme: {
extend: {},
},
plugins: [],
}