Created
February 18, 2021 01:40
-
-
Save kuccello/68f1483c884bfd734cdb8d1b936ce0b6 to your computer and use it in GitHub Desktop.
Edit your build styles list
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
build": { | |
"executor": "@nrwl/web:build", | |
"outputs": ["{options.outputPath}"], | |
"options": { | |
"outputPath": "dist/apps/my-app", | |
"index": "apps/my-app/src/index.html", | |
"main": "apps/my-app/src/main.tsx", | |
"polyfills": "apps/my-app/src/polyfills.ts", | |
"tsConfig": "apps/my-app/tsconfig.app.json", | |
"assets": [ | |
"apps/my-app/src/favicon.ico", | |
"apps/my-app/src/assets" | |
], | |
"styles": [ | |
"apps/my-app/src/styles.css", | |
"apps/my-app/src/app/tailwind.css" | |
], | |
"scripts": [], | |
"webpackConfig": "@nrwl/react/plugins/webpack" | |
}, | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment