File size: 404 Bytes
7aec436
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import * as Scaffolding from './scaffolding';

if (window.Scaffolding) {
  throw new Error('Scaffolding already exists on this page');
}

if (process.env.NODE_ENV !== 'production') {
  console.log('This is not a production build. Set NODE_ENV to production or use `npm run build-prod` for improved file size and performance (This message will go away).');
}

window.Scaffolding = Scaffolding;