File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ const utils = require('loader-utils')
4
4
const fs = require ( 'fs' )
5
5
const i18nReplaceForScript = require ( '../libs/replace-i18n-for-script' ) . replace
6
6
const getI18nBlockWithLocale = require ( '../libs/get-i18n-block' ) . getWithLocale
7
+ const path = require ( 'path' )
7
8
8
9
module . exports = function ( source ) {
9
10
this . cacheable ( )
@@ -56,12 +57,12 @@ module.exports = function (source) {
56
57
}
57
58
58
59
if ( / d e m o s / . test ( _this . resourcePath ) ) {
59
- const splits = _this . resourcePath . split ( 'demos' ) [ 1 ] . split ( '/' ) . length - 1
60
+ const splits = _this . resourcePath . split ( 'demos' ) [ 1 ] . split ( path . sep ) . length - 1
60
61
let dir = [ ]
61
62
for ( let i = 0 ; i < splits ; i ++ ) {
62
63
dir . push ( '..' )
63
64
}
64
- relative = dir . join ( '/' )
65
+ relative = dir . join ( path . sep )
65
66
}
66
67
67
68
if ( config . options . resolveVuxDir ) {
You can’t perform that action at this time.
0 commit comments