|
@@ -50,7 +50,7 @@ export class LoaderBase {
|
|
|
|
|
|
workingPathForURL( url ) {
|
|
workingPathForURL( url ) {
|
|
|
|
|
|
- const splits = url.split( '/' );
|
|
|
|
|
|
+ const splits = url.split( /[\\/]/g );
|
|
splits.pop();
|
|
splits.pop();
|
|
const workingPath = splits.join( '/' );
|
|
const workingPath = splits.join( '/' );
|
|
return workingPath + '/';
|
|
return workingPath + '/';
|