Skip to content

Commit

Permalink
fix(fuselage): Fuselage production build (#477)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo authored Jun 18, 2021
1 parent ea0a6c2 commit 228878c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/fuselage/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = require('./dist/fuselage.development.js');
// if (process.env.NODE_ENV === 'production') {
// module.exports = require('./dist/fuselage.production.js');
// } else {
// }
if (process.env.NODE_ENV === 'production') {
module.exports = require('./dist/fuselage.production.js');
} else {
module.exports = require('./dist/fuselage.development.js');
}

0 comments on commit 228878c

Please sign in to comment.