File tree Expand file tree Collapse file tree
libs/mf-runtime/src/lib/loader Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ export async function loadRemoteEntry(
8888export async function loadRemoteEntry (
8989 remoteEntryOrOptions : string | LoadRemoteEntryOptions ,
9090 remoteName ?: string ,
91- nonce ?: string
91+ nonce ?: string ,
9292) : Promise < void > {
9393 if ( typeof remoteEntryOrOptions === 'string' ) {
9494 const remoteEntry = remoteEntryOrOptions ;
@@ -98,7 +98,7 @@ export async function loadRemoteEntry(
9898 return await loadRemoteScriptEntry (
9999 options . remoteEntry ,
100100 options . remoteName ,
101- options . nonce
101+ options . nonce ,
102102 ) ;
103103 } else if ( remoteEntryOrOptions . type === 'module' ) {
104104 const options = remoteEntryOrOptions ;
@@ -121,7 +121,7 @@ async function loadRemoteModuleEntry(remoteEntry: string): Promise<void> {
121121async function loadRemoteScriptEntry (
122122 remoteEntry : string ,
123123 remoteName : string ,
124- nonce ?: string
124+ nonce ?: string ,
125125) : Promise < void > {
126126 return new Promise < void > ( ( resolve , reject ) => {
127127 // Is remoteEntry already loaded?
You can’t perform that action at this time.
0 commit comments