Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 687 Bytes

README.md

File metadata and controls

32 lines (25 loc) · 687 Bytes

react-music-player

music player build with React

overview

如何运行

开发启动

npm start

编译产品

npm run build

运行各阶段例子

修改webpack.config.jsentry

比如Router例子

entry: [
    'webpack-dev-server/client?http://localhost:3000',
    'webpack/hot/only-dev-server',
    'react-hot-loader/patch',
    path.join(__dirname, 'app/router/index.js')
],