Skip to content

Instantly share code, notes, and snippets.

@kuccello
Created February 18, 2021 01:40
Show Gist options
  • Save kuccello/68f1483c884bfd734cdb8d1b936ce0b6 to your computer and use it in GitHub Desktop.
Save kuccello/68f1483c884bfd734cdb8d1b936ce0b6 to your computer and use it in GitHub Desktop.
Edit your build styles list
...
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