-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlwr.config.json
More file actions
54 lines (54 loc) · 1.15 KB
/
lwr.config.json
File metadata and controls
54 lines (54 loc) · 1.15 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"lwc": {
"modules": [
{
"npm": "@lwc-garden/utils"
},
{
"dir": "./config/local",
"namespace": "local"
},
{
"dirs": ["./force-app/main/default/lwc"],
"namespace": "c"
},
{
"name": "@salesforce/community/Id",
"path": "./__mocks__/@salesforce/community/Id.js"
},
{
"name": "@salesforce/client/formFactor",
"path": "./__mocks__/@salesforce/client/formFactor.js"
}
]
},
"moduleProviders": [
"@lwrjs/label-module-provider",
"@lwrjs/app-service/moduleProvider",
"@lukethacoder/lwrjs-lwc-module-provider",
"@lwrjs/npm-module-provider",
[
"@lwc-garden/utils/resolvers/apex.ts",
{
"paths": ["__mocks__/@salesforce/apex"]
}
]
],
"routes": [
{
"id": "app",
"path": "/",
"rootComponent": "local/app",
"layoutTemplate": "config/index.html",
"bootstrap": {
"syntheticShadow": true
}
}
],
"assets": [
{
"dir": "$rootDir/force-app/main/default/staticresources/site",
"urlPath": "/sfsites/c/resource/site"
}
]
}