mirror of
https://github.com/wassname/react-webpack-template.git
synced 2026-06-28 02:46:48 +08:00
10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
'use strict';
|
|
|
|
import baseConfig from './base';
|
|
|
|
let config = {
|
|
appEnv: 'dev' // feel free to remove the appEnv property here
|
|
};
|
|
|
|
export default Object.freeze(Object.assign({}, baseConfig, config));
|