]> git.immae.eu Git - github/wallabag/wallabag.git/blob - webpack.config.js
fixup! Fix documentation wording for matches/notmatches tagging rules
[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;