私はgruntfileとフロントエンド開発者が一般的ではありません。gruntfileを設定して、デフォルトタスクからサーバを実行しようとしています。それはindex.htmtではなく、Grunt-Serve page
で開き、src/index.htmlに移動する必要があります。gruntfileスタートサーバ、自動ロード、自動オープンin 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"
}
も私はブラウザでプロジェクトを開くautoにgruntfileやサーブタスクを使用することが可能であることを前に見てきました。 ..パッケージ私はこれが必要でしょう....?また、いったん開発していくうちに、自分の変更が生きているのを見たいと思います。
ヘルプが表示されます