| Total Complexity | 3 |
| Complexity/F | 1.5 |
| Lines of Code | 19 |
| Function Count | 2 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | import 'babel-polyfill'; |
||
| 2 | import buggyfill from 'viewport-units-buggyfill'; |
||
| 3 | import app from './app.js'; |
||
| 4 | |||
| 5 | const $ = global.jQuery = require('jquery'); |
||
| 6 | buggyfill.init(); |
||
| 7 | |||
| 8 | $(document).ready(() => { |
||
| 9 | app.start(); |
||
| 10 | }); |
||
| 11 | |||
| 12 | /** |
||
| 13 | * important to leave this here!! |
||
| 14 | * */ |
||
| 15 | module.hot.accept(function (err) { |
||
| 16 | if (err) { |
||
| 17 | console.log(err); |
||
|
|
|||
| 18 | } |
||
| 19 | }); |