File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2869,8 +2869,8 @@ export class Inspect {
28692869 return ;
28702870 // resolve dynamic path to prevent ng webpack static analysis
28712871 const nodeModule = ( m ) => 'no' + 'de:' + `${ m } ` ;
2872- await import ( nodeModule ( 'fs' ) ) . then ( async ( fs ) => {
2873- await import ( nodeModule ( 'path' ) ) . then ( path => {
2872+ await import ( /* @vite -ignore */ nodeModule ( 'fs' ) ) . then ( async ( fs ) => {
2873+ await import ( /* @vite -ignore */ nodeModule ( 'path' ) ) . then ( path => {
28742874 let varsPath = inspectVarsPath . replace ( / \\ / g, '/' ) ;
28752875 if ( varsPath . indexOf ( '/' ) >= 0 ) {
28762876 let dir = path . dirname ( varsPath ) ;
Original file line number Diff line number Diff line change @@ -3328,8 +3328,8 @@ export class Inspect {
33283328 // resolve dynamic path to prevent ng webpack static analysis
33293329 const nodeModule = ( m :string ) => 'no' + 'de:' + `${ m } `
33303330
3331- await import ( nodeModule ( 'fs' ) ) . then ( async fs => {
3332- await import ( nodeModule ( 'path' ) ) . then ( path => {
3331+ await import ( /* @vite -ignore */ nodeModule ( 'fs' ) ) . then ( async fs => {
3332+ await import ( /* @vite -ignore */ nodeModule ( 'path' ) ) . then ( path => {
33333333 let varsPath = inspectVarsPath . replace ( / \\ / g, '/' )
33343334 if ( varsPath . indexOf ( '/' ) >= 0 ) {
33353335 let dir = path . dirname ( varsPath )
You can’t perform that action at this time.
0 commit comments