Skip to content

Commit

Permalink
fix: @babel/polyfill not found in Docker container (#831)
Browse files Browse the repository at this point in the history
Co-authored-by: Eric McNiece <emcniece@gmail.com>
  • Loading branch information
emcniece committed May 18, 2023
1 parent 410440b commit e7d0154
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions entrypoint
@@ -1,8 +1,6 @@
#!/usr/bin/env node

require('@babel/polyfill');

const launchServer = require('/opt/cncjs/server-cli').default;
const launchServer = require('/opt/cncjs/server-cli');

launchServer().catch(err => {
console.error('Error:', err);
Expand Down

0 comments on commit e7d0154

Please sign in to comment.