-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.local
36 lines (25 loc) · 1.59 KB
/
.env.local
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# A subset of Nx environment variables that can be useful during development.
# For a full list of environment variables, see
# https://nx.dev/reference/environment-variables#environment-variables
# Example tweaking env variables:
# https://nx.dev/extending-nx/recipes/project-graph-plugins#visualizing-the-project-graph
# If set to `false`, disables the project graph cache. Most useful when developing a plugin that modifies the project graph.
NX_CACHE_PROJECT_GRAPH=true
# If set to `false`, disables the Nx daemon process. Disable the daemon to print console.log statements in plugin code you are developing.
NX_DAEMON=true
# Uncomment to enable native logging for the cache and database. Use for debugging Nx internals in combination with NX_VERBOSE_LOGGING=true.
#NX_NATIVE_LOGGING=nx::native::cache,nx::native::db
# If set to `true`, disables the Nx Cloud.
NX_NO_CLOUD=false
# The number of tasks Nx should run in parallel. Overrides any configured value inside nx.json.
NX_PARALLEL=
# If set to `true`, will print debug information useful for profiling executors and Nx itself.
NX_PERF_LOGGING=false
# Prepend `NX_PROFILE=profile.json` before running targets with Nx to generate a file that be loaded in Chrome dev tools, to visualize the performance of Nx across multiple processes.
NX_PROFILE=
# If set to `true`, wil rerun the tasks even when the results are available in the cache.
NX_SKIP_NX_CACHE=false
# If set to `true`, will print debug information useful for troubleshooting.
NX_VERBOSE_LOGGING=false
# If set to `true`, will print debug information useful for troubleshooting.
VITE_CJS_TRACE=false