mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-31 19:50:40 +00:00
11 lines
210 B
JavaScript
11 lines
210 B
JavaScript
const config = {};
|
|
|
|
if (process.env.TEST_FRONTEND) {
|
|
config.presets = [ "@babel/preset-env" ];
|
|
}
|
|
|
|
if (process.env.TEST_BACKEND) {
|
|
config.plugins = [ "babel-plugin-rewire" ];
|
|
}
|
|
|
|
module.exports = config;
|