add tailwind config

This commit is contained in:
myh 2023-11-30 16:52:03 +08:00
parent 2054234a07
commit 9b7e428165
3 changed files with 1968 additions and 1153 deletions

3107
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -23,16 +23,19 @@
"zone.js": "~0.14.2" "zone.js": "~0.14.2"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "^17.0.5", "@angular-devkit/build-angular": "^16.2.10",
"@angular/cli": "^17.0.5", "@angular/cli": "^17.0.5",
"@angular/compiler-cli": "^17.0.0", "@angular/compiler-cli": "^17.0.0",
"@types/jasmine": "~5.1.0", "@types/jasmine": "~5.1.0",
"autoprefixer": "^10.4.16",
"jasmine-core": "~5.1.0", "jasmine-core": "~5.1.0",
"karma": "~6.4.0", "karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0", "karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0", "karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0", "karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0", "karma-jasmine-html-reporter": "~2.1.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5",
"typescript": "~5.2.2" "typescript": "~5.2.2"
} }
} }

9
tailwind.config.js Normal file
View File

@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [],
theme: {
extend: {},
},
plugins: [],
}