๐Ÿ“ฆ mui / material-ui-docs

๐Ÿ“„ nx.json ยท 19 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19{
  "$schema": "./node_modules/nx/schemas/nx-schema.json",
  "extends": "nx/presets/npm.json",
  "targetDefaults": {
    "copy-license": {
      "cache": true,
      "outputs": ["{projectRoot}/LICENSE"]
    },
    "build": {
      "cache": true,
      "dependsOn": ["copy-license", "^build"],
      "outputs": ["{projectRoot}/build", "{projectRoot}/dist", "{projectRoot}/.next"]
    },
    "preview": {
      "dependsOn": ["^build"]
    }
  }
}