Skip to content

Commit 76f607a

Browse files
Add parallel: false to vue-loader example (#141)
In a parallel build, the non-serializable directiveTransforms would quietly be dropped.
1 parent 73674a0 commit 76f607a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ module.exports = {
179179
// ...
180180
]
181181
},
182-
plugins: [new VueLoaderPlugin()]
182+
plugins: [new VueLoaderPlugin()],
183+
parallel: false // the compilerOptions.directiveTransforms are not serializable
183184
}
184185
```
185186

0 commit comments

Comments
 (0)