trading-chart-js
Version:
Hackable charting lib for traders
20 lines (16 loc) • 383 B
JavaScript
import Vue from 'vue'
import App from './App.vue'
// MOB_DEBUG=true npm run test - Enables mobile debugging
// (sending console output to the webpack terminal)
if (MOB_DEBUG) {
console.log = debug
console.error = debug
console.warn = debug
}
new Vue({
el: '#app',
render: h => h(App)
})
function debug(...argv) {
fetch('/debug?argv=' + JSON.stringify(argv))
}