Feast 2.0!
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 lines
168 B

  1. module.exports = {
  2. chainWebpack: config => {
  3. config
  4. .plugin('html')
  5. .tap(args => {
  6. args[0].title = 'Feast'
  7. return args
  8. })
  9. }
  10. }