I have tried to add materialize js to Magento 2 but it does not work. I have my materialize js in theme/web/js.
then I have the requirejs-config.js in theme/
this is the code:
var config = {
// When load 'requirejs' always load the following files also
deps: [
"js/materialize"
]
};
and I put my materialize.js inside this code:
define([
"jquery"
],
function($) {
Thank you and greetings!