how to use this plugin??
i’ve included it into babel.config.js:
module.exports = {
presets: [
['@babel/preset-env', {
modules: false,
targets: {
browsers: [
'Android >= 7',
'IOS >= 11',
'Safari >= 11',
'Chrome >= 49',
'Firefox >= 31',
'Samsung >= 5',
],
},
}],
],
plugins: [
'@babel/plugin-syntax-dynamic-import',
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-transform-runtime"
],
};
it’s working inside .js files but not in *.f7.html files (or f7 components)