mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-26 09:09:05 -06:00
BREAKING CHANGE: Detailed explanation: https://github.com/vuejs/vue/issues/9208#issuecomment-450012518 Take the following template as example: ``` <p> Welcome to <b>Vue.js</b> <i>world</i>. Have fun! </p> ``` With `preserveWhitespace: false`, it was compiled as: ``` <p> Welcome to <b>Vue.js</b><i>world</i>. Have fun! </p> ``` With `whitespace: 'condense'`, it is now compiled as: ``` <p> Welcome to <b>Vue.js</b> <i>world</i>. Have fun! </p> ``` Note the **inline whitespace between tags** is preserved. Closes #1020