mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-05-21 04:58:29 -05:00
678bfc6b2d
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