mirror of
https://github.com/visgl/luma.gl.git
synced 2026-01-25 14:08:58 +00:00
11 lines
276 B
JavaScript
11 lines
276 B
JavaScript
const {resolve} = require('path');
|
|
|
|
const CONFIG = {
|
|
entry: {
|
|
app: resolve('./app.js')
|
|
}
|
|
};
|
|
|
|
// This line enables bundling against src in this repo rather than installed module
|
|
module.exports = env => env ? require('../../webpack.config.local')(CONFIG)(env) : CONFIG;
|