mirror of
https://github.com/ansible/awx.git
synced 2026-01-19 05:31:22 -03:30
12 lines
205 B
JavaScript
12 lines
205 B
JavaScript
const path = require('path');
|
|
|
|
const _ = require('lodash');
|
|
|
|
const base = require('./webpack.base');
|
|
|
|
const development = {
|
|
devtool: 'cheap-source-map'
|
|
};
|
|
|
|
module.exports = _.merge(base, development);
|