asset size limit: How to skip this warning to run vue project on production?

I am trying to use this dashboard template https://github.com/PanJiaChen/vue-admin-template.
First, i faced with ‘openssl-legacy-provider’ error and i fixed it with changing package.json (export NODE_OPTIONS=–openssl-legacy-provider && vue-cli-service build).
Then there is another warning ‘asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).This can impact web performance.’, which is not letting me to start the project.

https://github.com/PanJiaChen/vue-admin-template/blob/master/vue.config.js how should i change vue.config.js file so that it will start?

tried optimization.splitChunks({...}) module.exports = { performance: { hints: false, }, }; }. did not work