Skip to content

Commit

Permalink
Merge pull request #69 from prezly/fix/address-babel-cache-issue
Browse files Browse the repository at this point in the history
Get rid of cache option that were introduced previously to be able to develop locally
  • Loading branch information
mohammadxali authored Aug 28, 2023
2 parents f3bc4b5 + 18f19e1 commit cbd7c1b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions babel.config.mjs
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
export default (api) => {
export default () => {
const isDevelopment = process.env.NODE_ENV === 'development';

if (isDevelopment) {
api.cache(true);
}

return {
targets: {
esmodules: false,
Expand Down

0 comments on commit cbd7c1b

Please sign in to comment.