mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-22 09:41:26 -08:00
* Attempt to fix minimist CVE - udpate npm to 8.5.5 - update node to 14.17.5 - update all minor versions to latest - minimist to 1.2.6 (could still be CVE) - set docker frontend to use cdn by default - update all dependencies - update survey button launch svg color - update to zoom / territory buttons - search icon changed - update Feature type from maplibre-gl - use default search icon * Rollback maplibre to 1.15.2 * Revert maplibre to 1.14.0 * Rollback some changes - rollback uswds - search icon is back - update snapshots - rollback docker to be cdn by default
13 lines
321 B
JavaScript
13 lines
321 B
JavaScript
path = require('path');
|
|
|
|
// https://github.com/maplibre/maplibre-gl-js/issues/83#issuecomment-877012839
|
|
exports.onCreateWebpackConfig = ({stage, loaders, actions}) => {
|
|
actions.setWebpackConfig({
|
|
devtool: 'eval-source-map',
|
|
resolve: {
|
|
alias: {
|
|
'mapbox-gl': 'maplibre-gl',
|
|
},
|
|
},
|
|
});
|
|
};
|