Signo
Signo
Resolved with ```npm install -f ...``` on Angular v13 (without the optional package @mapbox/mapbox-gl-geocoder) : ``` npm i -s -f install ngx-mapbox-gl mapbox-gl ```
Same issue, solved by adding this into ```vue.config.js``` : ``` const NodePolyfillPlugin = require( 'node-polyfill-webpack-plugin' ); module.exports = { configureWebpack: { plugins: [ new NodePolyfillPlugin(), ], }, }; ```
This container seems to generate sprites in the right format. However, I still can not call them in my style sheet. Have you found a solution ? https://github.com/macteo/spritezero-docker ([mapbox/spritezero](https://github.com/mapbox/spritezero))
I found a solution : #### - Create /sprites/_svg in your tileserver folder (/data) ```bash mkdir sprites &&\ mkdir sprites/_svg ``` #### - Put your *.svg files in sprites/_svg ####...