Assets Manifest
Assets Manifest (react-loadable.json) is a graph data type representation that connects all entry points and origins to its required file dependencies.
Data Structure
{
"entrypoints": [ ],
"origins": {
"app": [ ]
},
"assets": {
"app": {
"js": [
{
"file": "",
"hash": "",
"publicPath": "",
"integrity": ""
}
]
}
}
}entrypoints
Type: array
List of all application entry points defined in Webpack entry.
origins
Type: array
Origin name requested. List all assets required for the requested origin.
assets
Type: object[]
Lists all application assets generate by Webpack, group by file type, containing an array of objects with the following format:
File Example
Last updated
Was this helpful?