flecks/packages/react/build/flecks.config.js
2024-01-13 08:13:43 -06:00

21 lines
315 B
JavaScript

const plugins = [];
const {
FLECKS_CORE_IS_PRODUCTION,
} = process.env;
if ('true' !== FLECKS_CORE_IS_PRODUCTION) {
plugins.push('react-refresh/babel');
}
module.exports = {
babel: {
plugins,
presets: [
'@babel/preset-react',
],
},
dependencies: ['@flecks/web'],
exts: ['.jsx'],
};