obs-portal/frontend/craco.config.js

19 lines
440 B
JavaScript
Raw Normal View History

module.exports = {
plugins: [
{plugin: require('@semantic-ui-react/craco-less')},
{
plugin: {
overrideWebpackConfig: ({webpackConfig, cracoConfig, pluginOptions, context: {env, paths}}) => {
webpackConfig.resolve.alias = {
...webpackConfig.resolve.alias,
'mapbox-gl': 'maplibre-gl',
}
return webpackConfig
},
options: {},
},
},
],
}