Предварительный просмотр нескольких файлов с помощью grunt-contrib-connect? - PullRequest
0 голосов
/ 18 декабря 2018

Я бы хотел предварительно просмотреть мой index.html и мой README.md файл в браузере с использованием перезагрузки в реальном времени.Настройка работает для одного файла, но я не могу заставить его работать для двух файлов.

grunt.initConfig({
  connect: {
    // Server for the index.html inside the templates
    template: {
                options: {
                    hostname: 'localhost',
                    port: 3001,
                    base: './templates/price-table/',
                    livereload: true
                }
            },
    // Server for the README.md
    readme: {
                options: {
                    hostname: 'localhost',
                    port: 3002,
                    base: '.',
                    livereload: true
                }
            },
  watch: {
        // Watch Templates.
        template: {
            options: {
                spawn: false,
                livereload: true
            },
            files: ['templates/price-table/**/*.html'],
        },
        // Watch Readme
        readme: {
            options: {
                spawn: false,
                livereload: true
            },
            files: ['README.md'],
        }
    }
}); //initConfig

// load npm tasks
 grunt.loadNpmTasks('grunt-contrib-watch');
 grunt.loadNpmTasks('grunt-contrib-connect');

 // define default task
 grunt.registerTask('default', ['connect:template', 'connect:readme', 'watch:template', 'watch:readme']);

Как это настроить?

...