diff options
author | Jason M. Bills <jason.m.bills@intel.com> | 2025-05-05 23:16:11 +0300 |
---|---|---|
committer | Jason Bills <jason.m.bills@intel.com> | 2025-05-09 16:19:01 +0300 |
commit | 34e78de5a403f8f79d2efb881ee7b37619a3e6b9 (patch) | |
tree | 5714dfbf7914f4fceac52f097603b72e72ffd6d8 /vue.config.js | |
parent | 6ce5d845561320b81e93d1a15caf22d45cd5ee31 (diff) | |
download | webui-vue-34e78de5a403f8f79d2efb881ee7b37619a3e6b9.tar.xz |
Remove the obmc-custom style import
Importing the obmc-custom style adds over 700KB to the binary size. This
import was not there with Vue 2, so remove the import to restore the Vue
2 implementation and reduce the binary size.
Change-Id: I0a32003da26c5e1e055b952ca502190068f9960e
Signed-off-by: Jason M. Bills <jason.m.bills@intel.com>
Diffstat (limited to 'vue.config.js')
-rw-r--r-- | vue.config.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/vue.config.js b/vue.config.js index 0fc5e6b0f..2fab59fa0 100644 --- a/vue.config.js +++ b/vue.config.js @@ -15,13 +15,11 @@ module.exports = { @import "@/assets/styles/bmc/helpers"; @import "@/env/assets/styles/_${envName}"; @import "@/assets/styles/bootstrap/_helpers"; - @import '@/assets/styles/_obmc-custom.scss'; `; } else { return ` @import "@/assets/styles/bmc/helpers"; @import "@/assets/styles/bootstrap/_helpers"; - @import '@/assets/styles/_obmc-custom.scss'; `; } })(), // immediately invoked function expression (IIFE) |