index.js 575 Bytes
Newer Older
1
import '@babel/polyfill';
2 3
import dva from 'dva';
import 'moment/locale/zh-cn';
afc163's avatar
afc163 committed
4
import FastClick from 'fastclick';
5
import './g2';
偏右's avatar
偏右 committed
6
import './rollbar';
陈帅's avatar
陈帅 committed
7
import onError from './error';
nikogu's avatar
nikogu committed
8
// import browserHistory from 'history/createBrowserHistory';
9 10 11
import './index.less';
// 1. Initialize
const app = dva({
nikogu's avatar
nikogu committed
12
  // history: browserHistory(),
陈帅's avatar
陈帅 committed
13
  onError,
14 15 16 17 18
});

// 2. Plugins
// app.use({});

WhatAKitty's avatar
WhatAKitty committed
19
// 3. Register global model
20
app.model(require('./models/global').default);
21 22

// 4. Router
23
app.router(require('./router').default);
24 25 26

// 5. Start
app.start('#root');
afc163's avatar
afc163 committed
27
FastClick.attach(document.body);