Troubleshoot untranspiled add-on dependencies
Troubleshoot untranspiled add-on dependencies#
Note
In Volto 18 and later, Babel improved support for ES specifications, such as for the null coalescence operator. However the following procedure can be useful in other scenarios.
When using external add-ons in your project, sometimes you will run into add-ons that are not securely transpiled or haven't been transpiled at all. In that case, you might see an error such as the following:
Module parse failed: Unexpected token (10:41) in @react-leaflet/core/esm/path.js
...
const options = props.pathOptions ?? {};
...
Babel automatically transpiles the code in your add-on, but node_modules
are excluded from this process.
You need to include the add-on path in the list of modules to be transpiled.
To do so, customize the webpack configuration in the razzle.config.js
file in your add-on.
For example, suppose that you want to use react-leaflet, which has a known transpilation issue.
const path = require('path');
const makeLoaderFinder = require('razzle-dev-utils/makeLoaderFinder');
const babelLoaderFinder = makeLoaderFinder('babel-loader');
const jsConfig = require('./jsconfig').compilerOptions;
const pathsConfig = jsConfig.paths;
let voltoPath = './node_modules/@plone/volto';
Object.keys(pathsConfig).forEach((pkg) => {
if (pkg === '@plone/volto') {
voltoPath = `./${jsConfig.baseUrl}/${pathsConfig[pkg][0]}`;
}
});
const { modifyWebpackConfig, plugins } = require(`${voltoPath}/razzle.config`);
const customModifyWebpackConfig = ({ env, webpackConfig, webpackObject, options }) => {
const config = modifyWebpackConfig({
env,
webpackConfig,
webpackObject,
options,
});
const babelLoader = config.module.rules.find(babelLoaderFinder);
const { include } = babelLoader;
const corePath = path.join(
path.dirname(require.resolve('@react-leaflet/core')),
'..',
);
const esmPath = path.join(
path.dirname(require.resolve('react-leaflet')),
'..',
);
include.push(corePath);
include.push(esmPath);
return config;
};
module.exports = { modifyWebpackConfig: customModifyWebpackConfig, plugins };
First you need some setup to get the webpack configuration from Volto's configuration. Once you have that, you need to resolve the path to the desired add-ons, and push it into the Babel loader include list. After this, the add-ons will load correctly.