We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@import
I created a reproduce demo here https://github.com/peerigon/extract-loader/pull/64/files
In this case the main.css imports common.css which is a symlink to symlinks/common.css.
main.css
common.css
symlinks/common.css
1 . 2 ├── symlinks 3 │ └── common.css -> ../common.css 4 ├── common.css 5 ├── hi.jpg 6 ├── index.html 7 ├── main.css 8 └── main.js 9 10 1 directory, 6 files
The Webpack build failed because the basedir in resolve.sync was wrong.
basedir
resolve.sync
extract-loader/src/extractLoader.js
Line 101 in c82150a
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I created a reproduce demo here https://github.com/peerigon/extract-loader/pull/64/files
In this case the
main.css
importscommon.css
which is a symlink tosymlinks/common.css
.The Webpack build failed because the
basedir
inresolve.sync
was wrong.extract-loader/src/extractLoader.js
Line 101 in c82150a
The text was updated successfully, but these errors were encountered: