mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
8 lines
181 B
JavaScript
8 lines
181 B
JavaScript
|
var path = require('path');
|
||
|
var webpack = require('webpack');
|
||
|
var base = require('./base.config');
|
||
|
|
||
|
base.output.path = path.join(base.output.path, '/prod');
|
||
|
|
||
|
module.exports = base;
|