npm run build 전후 스크립트 추가하기
2021. 7. 15. 11:26ㆍIT개발/Vue.js
반응형
// package.json 내부 설정
{
"name": "npm-scripts-example",
"version": "1.0.0",
"description": "npm scripts example",
"scripts": {
"prebuild": "echo I run before the build script",
"build": "cross-env NODE_ENV=production webpack",
"postbuild": "echo I run after the build script"
}
}
반응형
'IT개발 > Vue.js' 카테고리의 다른 글
[Vuejs] mutations/actions 함수의 파라미터는 제한이 있다! (0) | 2021.07.27 |
---|---|
Vuex 라이프 사이클 (0) | 2021.07.27 |
vue router 에서 vuex modules store 참조하기 (0) | 2021.07.14 |
devexpress customs theme 적용하기 (0) | 2021.07.08 |
Vue.js #01. 뷰 시작하며... (0) | 2020.12.02 |