1
0
mirror of https://github.com/wallabag/wallabag.git synced 2024-12-21 12:44:12 +01:00
wallabag/webpack.config.js

9 lines
208 B
JavaScript
Raw Normal View History

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;