]> git.immae.eu Git - github/wallabag/wallabag.git/blame - webpack.config.js
Fix documentation wording for matches/notmatches tagging rules
[github/wallabag/wallabag.git] / webpack.config.js
CommitLineData
64f81bc3
TC
1const path = require('path');
2
3function buildConfig(env) {
4 env = env || 'prod';
5 return require(path.resolve(__dirname, 'app/config/webpack/' + env + '.js'))({ env: env })
6}
7
8module.exports = buildConfig;