www/babel.config.js

12 lines
172 B
JavaScript
Raw Permalink Normal View History

2022-11-10 05:45:40 +03:00
module.exports = function (api) {
api.cache(true);
const presets = [
["@babel/preset-react"]
]
const plugins = [];
return {
presets,
plugins
};
}