mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 02:00:43 +00:00
* using browsersync instead of livereload * `gulp serve` works as before * `gulp sync` starts browserSync and serves UI on port 3000 * everything is built in `build/` * build release with `gulp build --release`
11 lines
203 B
JavaScript
11 lines
203 B
JavaScript
require('font-awesome-webpack');
|
|
require('../styles/main.less');
|
|
|
|
const React = require('react');
|
|
|
|
const App = require('./components/app.js');
|
|
|
|
React.render(
|
|
<App/>,
|
|
document.getElementById('app'));
|