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/guide/backend-integration.md
+1-5Lines changed: 1 addition & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -118,14 +118,10 @@ If you need a custom integration, you can follow the steps in this guide to conf
118
118
file:string
119
119
/**
120
120
* The list of CSS files imported by this chunk
121
-
*
122
-
* This field is only present in JS chunks.
123
121
*/
124
122
css?:string[]
125
123
/**
126
124
* The list of asset files imported by this chunk, excluding CSS files
127
-
*
128
-
* This field is only present in JS chunks.
129
125
*/
130
126
assets?:string[]
131
127
/**
@@ -164,7 +160,7 @@ If you need a custom integration, you can follow the steps in this guide to conf
164
160
-**Asset chunks**: Generated from imported assets like images, fonts. Their key is the relative src path from project root.
165
161
-**CSS files**: When [`build.cssCodeSplit`](/config/build-options.md#build-csscodesplit) is `false`, a single CSS file is generated with the key `style.css`. When `build.cssCodeSplit` is not `false`, the key is generated similar to JS chunks (i.e. entry chunks will not have `_` prefix and non-entry chunks will have `_` prefix).
166
162
167
-
JS chunks (chunks other than assets or CSS) will contain information on their static and dynamic imports (both are keys that map to the corresponding chunk in the manifest), and also their corresponding CSS and asset files (if any).
163
+
JS chunks (chunks other than assets or CSS) will contain information on their static and dynamic imports (both are keys that map to the corresponding chunk in the manifest). Chunks also list their corresponding CSS and asset files if they have any.
168
164
169
165
4. You can use this file to render links or preload directives with hashed filenames.
0 commit comments