uptime-kuma/babel.config.js

8 lines
127 B
JavaScript
Raw Permalink Normal View History

2021-10-08 15:11:50 +08:00
const config = {};
if (process.env.TEST_FRONTEND) {
2022-04-17 15:27:35 +08:00
config.presets = [ "@babel/preset-env" ];
2021-10-08 15:11:50 +08:00
}
module.exports = config;