Skip to content

Commit 05cf250

Browse files
authored
Merge pull request #100 from bholloway/fix-sources-content
Fix missing sourcesContent in postcss engine
2 parents 65eecf5 + de7989b commit 05cf250

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/resolve-url-loader/lib/engine/postcss.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function process(sourceFile, sourceContent, params) {
3030
prev : !!params.absSourceMap && fileProtocol.prepend(params.absSourceMap),
3131
inline : false,
3232
annotation : false,
33-
sourcesContent: false
33+
sourcesContent: true // #98 sourcesContent missing from output map
3434
}
3535
})
3636
.then(result => ({

0 commit comments

Comments
 (0)