본문 바로가기
  • 커뮤니티
  • 블로그
  • 북마크
Front-end/Visual Studio Code

[VS Code]gulp he following tasks did not complete: default 에러해결

by 빽짱구 2023. 3. 4.

gulp 실행시 he following tasks did not complete: default 에러메시지가 보인다면, 아래 소스를 gulpfile.js로 만든후 다시 실행해보세요.

 

const gulp = require('gulp'); 
gulp.task('default',async function() {
	console.log('gulp start');
});
gulp