Skip to content

Commit 0675eef

Browse files
authored
TT-329 Implement TailwindCSS (#743)
* build: TT-329 Implement TailwindCSS * refactor: TT-329 change tailwind config file identation Co-authored-by: Andrés Soto
1 parent c5bf7ee commit 0675eef

File tree

6 files changed

+4705
-689
lines changed

6 files changed

+4705
-689
lines changed

angular.json

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"prefix": "app",
1212
"architect": {
1313
"build": {
14-
"builder": "@angular-devkit/build-angular:browser",
14+
"builder": "@angular-builders/custom-webpack:browser",
1515
"options": {
1616
"outputPath": "dist/time-tracker",
1717
"index": "src/index.html",
@@ -45,7 +45,10 @@
4545
"node_modules/datatables.net-buttons/js/buttons.html5.js",
4646
"node_modules/datatables.net-buttons/js/buttons.print.js",
4747
"node_modules/datatables.net-responsive/js/dataTables.responsive.js"
48-
]
48+
],
49+
"customWebpackConfig": {
50+
"path": "webpack.config.js"
51+
}
4952
},
5053
"configurations": {
5154
"production": {
@@ -79,7 +82,7 @@
7982
}
8083
},
8184
"serve": {
82-
"builder": "@angular-devkit/build-angular:dev-server",
85+
"builder": "@angular-builders/custom-webpack:dev-server",
8386
"options": {
8487
"browserTarget": "time-tracker:build"
8588
},
@@ -96,7 +99,7 @@
9699
}
97100
},
98101
"test": {
99-
"builder": "@angular-devkit/build-angular:karma",
102+
"builder": "@angular-builders/custom-webpack:karma",
100103
"options": {
101104
"main": "src/test.ts",
102105
"polyfills": "src/polyfills.ts",
@@ -111,7 +114,10 @@
111114
"./node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
112115
"src/styles.scss"
113116
],
114-
"scripts": []
117+
"scripts": [],
118+
"customWebpackConfig": {
119+
"path": "webpack.config.js"
120+
}
115121
}
116122
},
117123
"lint": {

0 commit comments

Comments
 (0)