You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/pages/Troubleshooting.md
+26-7Lines changed: 26 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,15 +55,34 @@ UI5 + Karma:
55
55
56
56
### Changing UI5 Tooling's Data Directory
57
57
58
-
UI5 Tooling's data directory is by default at `~/.ui5`. It's the place where the framework artefacts are stored.
59
-
In some cases and environments this is not a convenient location and the user needs to provide a better one. The path to it is provided via the `UI5_DATA_DIR` environment variable.
58
+
UI5 Tooling's data directory is by default at `~/.ui5`. It's the place where the framework artifacts are stored.
59
+
In some cases and environments this is not a convenient location and the user needs to provide a better one.
60
60
61
-
Example:
61
+
The path to it can either be provided via environment variable or permanently set in the configuration.
62
62
63
-
Unix-style:
63
+
!!! info
64
+
Paths are resolved relative to the current root project path (i.e. where the package.json is located).
64
65
65
-
`UI5_DATA_DIR=/my/custom/location/ ui5 build`
66
+
#### Environment variable `UI5_DATA_DIR`
66
67
67
-
On Windows:
68
+
Unix:
69
+
```sh
70
+
UI5_DATA_DIR=/my/custom/location/.ui5 ui5 build
71
+
```
72
+
73
+
Windows:
74
+
```sh
75
+
set UI5_DATA_DIR="C:\\my\\custom\\location\\.ui5" ui5 build
0 commit comments