mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-04 16:10:03 +00:00
9 lines
208 B
JavaScript
9 lines
208 B
JavaScript
|
const path = require('path');
|
||
|
|
||
|
function buildConfig(env) {
|
||
|
env = env || 'prod';
|
||
|
return require(path.resolve(__dirname, 'app/config/webpack/' + env + '.js'))({ env: env })
|
||
|
}
|
||
|
|
||
|
module.exports = buildConfig;
|