]> git.immae.eu Git - github/wallabag/wallabag.git/blob - webpack.config.js
Merge pull request #4438 from wallabag/dependabot/composer/scheb/two-factor-bundle...
[github/wallabag/wallabag.git] / webpack.config.js
1 const path = require('path');
2
3 function buildConfig(env) {
4 env = env || 'prod';
5 return require(path.resolve(__dirname, 'app/config/webpack/' + env + '.js'))({ env: env })
6 }
7
8 module.exports = buildConfig;