officejs:: gulp serve

 

 

gulp는 JavaScript를 사용하여 작업 자동화를 위한 도구로, 다양한 태스크(작업)를 정의하고 실행할 수 있습니다. 예를 들어, 파일 압축, 이미지 최적화, 코드 변환 등을 자동으로 처리할 수 있습니다.

 

npm install gulp --global
yarn add gulp -g #호환성 에러있음
pnpm add gulp -g #호환성 에러있음


npm install yo --global
npm install @microsoft/generator-sharepoint --global
yarn add yo -g   #호환성 에러있음
yarn add @microsoft/generator-sharepoint -g  #호환성 에러있음

 

 

 

# install certi
gulp trust-dev-cert

# run
gulp serve


---------------------
gulp serve: To start the server and open the page in browser
gulp serve --nobrowser: To start the server but will not open the new browser
gulp test: To run the test on your solution
gulp bundle --ship: To build the solution in release mode
gulp package-solution --ship: To build .sppkg file

 

Error - 'spfx-serve' sub task errored after 1.42 s
 No development certificate found. Generate a new certificate manually, or set the `canGenerateNewCertificate` parameter to `true` when calling `ensureCertificateAsync`.

 

 

 

 

 

 

 

 

_

반응형