Skip to content

Commit 86a57f3

Browse files
jorritlangpavel
authored andcommitted
fix(webpack): Fix Webpack compilation on Windows (kriasoft#1578)
1 parent d20cd7d commit 86a57f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import overrideRules from './lib/overrideRules';
1717
import pkg from '../package.json';
1818

1919
const ROOT_DIR = path.resolve(__dirname, '..');
20-
const SRC_DIR = `${ROOT_DIR}/src`;
20+
const SRC_DIR = path.join(ROOT_DIR, 'src');
2121
const BUILD_DIR = `${ROOT_DIR}/build`;
2222
const NODE_MODULES_DIR = `${ROOT_DIR}/node_modules`;
2323

0 commit comments

Comments
 (0)