Skip to main content
2 of 4
deleted 2 characters in body
Khoa Truong
  • 32.5k
  • 11
  • 92
  • 159

There is another way we should know that we can override the html template via RequireJS. We don't need to create a custom theme. In your custom module, create a requirejs-config.js:

app/code/{Vendor}/{Module_Name}/view/frontend/requirejs-config.js

var config = { map: { '*': { 'Magento_Checkout/template/minicart/content.html': 'Vendor_ModuleName/template/minicart/content.html' } } }; 

A more explain we can read more here.

Khoa Truong
  • 32.5k
  • 11
  • 92
  • 159