Skip to content

Commit f3e37b0

Browse files
committed
fix path sep
1 parent 62341f3 commit f3e37b0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/script-loader.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const utils = require('loader-utils')
44
const fs = require('fs')
55
const i18nReplaceForScript = require('../libs/replace-i18n-for-script').replace
66
const getI18nBlockWithLocale = require('../libs/get-i18n-block').getWithLocale
7+
const path = require('path')
78

89
module.exports = function (source) {
910
this.cacheable()
@@ -56,12 +57,12 @@ module.exports = function (source) {
5657
}
5758

5859
if (/demos/.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
6061
let dir = []
6162
for (let i = 0; i < splits; i++) {
6263
dir.push('..')
6364
}
64-
relative = dir.join('/')
65+
relative = dir.join(path.sep)
6566
}
6667

6768
if (config.options.resolveVuxDir) {

0 commit comments

Comments
 (0)