现在生成的项目中没有Gruntfile文件了, webpack.config.js的配置也完全不一样了。视频是不是应该更新下?
2017-05-03
client?eb57:75 ./src/components/Main.js
Module build failed: SyntaxError: G:/react/gallery-by-react/src/components/Main.js: Unexpected token (67:3)
65 | </section>
66 | );
> 67 | },
| ^
68 | Constant:{
69 | centerPos:{
70 | left:0,
搞不明白为什么英文逗号不识别不了
Module build failed: SyntaxError: G:/react/gallery-by-react/src/components/Main.js: Unexpected token (67:3)
65 | </section>
66 | );
> 67 | },
| ^
68 | Constant:{
69 | centerPos:{
70 | left:0,
搞不明白为什么英文逗号不识别不了
2017-05-01
加载json这里有一个大坑,最新的是用
rules: [
{
test: /\.json$/,
use: 'json-loader'
}
]
而不是
{
test: /\.json$/,
loader: 'json-loader'
}
rules: [
{
test: /\.json$/,
use: 'json-loader'
}
]
而不是
{
test: /\.json$/,
loader: 'json-loader'
}
2017-04-27
最新回答 / 慕仰6929422
请问你是怎么启动的呢,npm run satrt试过了吗,然后访问http://localhost:8000/webpack-dev-server/,具体的命令都写在package.json里了,可以去看一下,webpack相关的配置在cfg那个文件夹下
2017-04-27
项目完整地址:https://github.com/zhangxintong/gallery-by-react
Demo:https://zhangxintong.github.io/gallery-by-react/
如有帮助帮忙点赞,谢谢
Demo:https://zhangxintong.github.io/gallery-by-react/
如有帮助帮忙点赞,谢谢
2017-04-17