From c7dfa7881ab0e5c4dcf06eb23fe70150cd2b4b94 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Fri, 17 Apr 2020 15:25:55 +0300 Subject: [PATCH] Fixed Webpack config on Windows (#1619) --- webpack.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.ts b/webpack.config.ts index 60963c54d..5a6bb8831 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -333,7 +333,7 @@ export default (_env: never, args: Configuration): Configuration[] => { splitChunks: { cacheGroups: { vendor: { - test: /\/node_modules\//, + test: /[\\/]node_modules[\\/]/, name: "assets/javascripts/vendor", chunks: "all" }