We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daed2b1 commit 229bd43Copy full SHA for 229bd43
packages/@angular/cli/models/webpack-configs/styles.ts
@@ -51,7 +51,8 @@ export function getStylesConfig(wco: WebpackConfigOptions) {
51
url: ({ url }: { url: string }, { file }: { file: string }) => {
52
const relativePathToRoot = path.relative(file, projectRoot);
53
return path.join(relativePathToRoot, 'node_modules', url.substr(1))
54
- // Ensure that, on Windows, the path doesn't contain back slashes to be PostCSS friendly :)
+ // Ensure that, on Windows, the path doesn't contain back slashes to
55
+ // be PostCSS friendly :)
56
.replace(/\\/g, '/');
57
},
58
}),
0 commit comments