mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-01 06:39:18 +00:00
8 lines
216 B
JavaScript
8 lines
216 B
JavaScript
const path = require('path');
|
|
|
|
function buildConfig(options) {
|
|
const env = options.prod ? 'prod' : 'dev';
|
|
return require(path.resolve(__dirname, `app/config/webpack/${env}.js`));
|
|
}
|
|
|
|
module.exports = buildConfig;
|