mirror of
https://github.com/visgl/react-map-gl.git
synced 2026-01-18 15:54:22 +00:00
12 lines
284 B
JavaScript
12 lines
284 B
JavaScript
const webpack = require('webpack');
|
|
|
|
module.exports = {
|
|
reactStrictMode: true,
|
|
|
|
webpack: config => {
|
|
// Optional: Enables reading mapbox token from environment variable
|
|
config.plugins.push(new webpack.EnvironmentPlugin({MapboxAccessToken: ''}));
|
|
return config;
|
|
}
|
|
};
|