var htmlwp = require('html-webpack-plugin');
plugins:[
new htmlwp({
title:'首頁',
filename:'index.html',
template:'index.html'
})
]
"dev": "webpack-dev-server --inline --hot --open --port 4009"
webpack1-dev-server配置
plugins:[
new htmlwp({
title:'首頁',
filename:'index.html',
template:'index.html'
})
]
"dev": "webpack-dev-server --inline --hot --open --port 4009"
webpack1-dev-server配置
2018-07-16
會報錯,在chrome下,會出現DOMException: play() failed because the user didn't interac,因為chrome的原因
2018-07-13
import React, {Component} from 'react'
我改成這個就好用了
我改成這個就好用了
2018-06-25