안녕하세요 저는 gruntfile과 프론트 엔드 dev에 일반적으로 익숙하지 않습니다. gruntfile을 설정하여 내 기본 작업에서 서버를 실행할 수 있지만 실제로 작동하지만 그것은 index.htmt에서 열리지 않지만 대신 Grunt-Serve page
에서 src/index.html로 이동해야합니다.Gruntfile 시작 서버, 자동로드, broswer에서 자동 열기
내 gruntfile :
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
serve: {
options: {
port: 9000,
hostname: 'localhost',
}
}
});
//Load Grunt serve task
grunt.loadNpmTasks('grunt-serve');
grunt.registerTask('default', ['serve']);
};
package.json :
"devDependencies": {
"grunt": "^1.0.1",
"grunt-serve": "^0.1.6"
}
또한 내가 그것을 gruntfile를 사용하거나 자동으로 제공 작업 브라우저에서 프로젝트를 열 수 있음을 전에 보았다. .. 패키지가 필요합니다 ....? 또한 한 번 개발하고있는 것은 내 변화가 살아 있는지보고 싶습니다.
도움이 되셨다면