diff options
author | Matthew Miller <matthew@millerti.me> | 2020-10-07 23:14:28 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2021-02-05 09:57:48 -0800 |
commit | edc118d41ceb788ea9b2fbef876ab874e7f0c498 (patch) | |
tree | b801d7ea485ef02ccadeb1a3809cb07953c10093 /packages/browser/webpack.config.js | |
parent | a1f0da668d54cb4b1119a61c6f48c9ba613c50ab (diff) |
Use multiline version comment in browser build
This should help prevent accidents in the future with the library not working if minification at a higher levels puts everything on a single line.
Diffstat (limited to 'packages/browser/webpack.config.js')
-rw-r--r-- | packages/browser/webpack.config.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/browser/webpack.config.js b/packages/browser/webpack.config.js index 75bb5fe..245635c 100644 --- a/packages/browser/webpack.config.js +++ b/packages/browser/webpack.config.js @@ -36,6 +36,7 @@ module.exports = { componentsOptions: { InjectAsComment: { tag: 'Version: {version} - {date}', + multiLineCommentType: true, }, }, }), |