Skip to content
This repository has been archived by the owner on Mar 17, 2021. It is now read-only.

fix(index): add this.rootContext for webpack >= v4.0.0 compatibility #237

Merged
merged 1 commit into from
Dec 16, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function loader(content) {

validateOptions(schema, options, 'File Loader');

const context = options.context || this.options.context;
const context = options.context || this.rootContext || this.options && this.options.context

let url = loaderUtils.interpolateName(this, options.name, {
context,
Expand Down