Skip to content

Commit 7730ee1

Browse files
committed
fix: missing space between italics and bold (close: #661)
"markdown-it" will intendedly reserve this space, and this issue was caused by "preserveWhitespace: true" (See: https://github.com/vuejs/vue/tree/dev/packages/vue-template-compiler#options), Impact on performance (Size of whole assets): Before (1952K), After (1960K), which is an acceptable change.
1 parent 2a33075 commit 7730ee1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/webpack/createBaseConfig.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ module.exports = function createBaseConfig ({
108108
.loader('vue-loader')
109109
.options({
110110
compilerOptions: {
111-
preserveWhitespace: false
111+
preserveWhitespace: true
112112
},
113113
cacheDirectory,
114114
cacheIdentifier

0 commit comments

Comments
 (0)