mirror of
https://github.com/visgl/react-map-gl.git
synced 2026-01-18 15:54:22 +00:00
12 lines
202 B
JavaScript
12 lines
202 B
JavaScript
const config = require('./config');
|
|
const path = require('path');
|
|
|
|
module.exports = Object.assign(config, {
|
|
|
|
output: {
|
|
path: path.resolve(__dirname, '../dist'),
|
|
filename: 'bundle.js'
|
|
}
|
|
|
|
});
|