gpt4 book ai didi

javascript - 浏览器未使用 Grunt Livereload 重新加载

转载 作者:行者123 更新时间:2023-12-03 10:00:40 24 4
gpt4 key购买 nike

我试图在更改文件时添加 broser 的 livereload,但浏览器没有重新加载,我不明白为什么,我都像描述的那样 here ,当我 tun grunt 时浏览器打开,然后当更改 index.html 时,在控制台中获取

Waiting...
>> File "index.html" changed.
Completed in 0.000s at Wed Jun 03 2015 11:45:24 GMT+0300 (EEST) - Waiting...
>> File "index.html" changed.
Completed in 0.000s at Wed Jun 03 2015 11:54:11 GMT+0300 (EEST) - Waiting...
>> File "index.html" changed.
Completed in 0.000s at Wed Jun 03 2015 12:01:30 GMT+0300 (EEST) - Waiting...

但是浏览器没有重新加载,我做错了什么?也许我错过了什么?我尝试用谷歌搜索问题,但没有得到任何有用的结果...如果您需要我的 Gruntfile 或任何文件,请告诉我。谢谢!

这是我的 Gruntfile.js :

module.exports = function(grunt) {
// Load Grunt tasks declared in the package.json file
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
// Configure Grunt
grunt.initConfig({
// Grunt express - our webserver
// https://github.com/blai/grunt-express
express: {
all: {
options: {
bases: ['var\\www\\megapolis'],
port: 8080,
hostname: "localhost",
livereload: true
}
}
},
// grunt-watch will monitor the projects files
// https://github.com/gruntjs/grunt-contrib-watch
watch: {
all: {
files: '**/*.html',
options: {
livereload: true
}
}
},
// grunt-open will open your browser at the project's URL
// https://www.npmjs.org/package/grunt-open
open: {
all: {
path: 'http://localhost/megapolis/index.html'
}
}
});
// Creates the `server` task
grunt.registerTask('server', [
'express',
'open',
'watch'
]);
};

最佳答案

可能的原因是您的 grunt-open 插件没有配置与 express 服务器相同的端口。 grunt-open 插件使用默认的 80 端口,而 express 在 8080 上配置。

尝试附加与 express 配置中相同的 8080 端口:

// grunt-open will open your browser at the project's URL
// https://www.npmjs.org/package/grunt-open
open: {
all: {
path: 'http://localhost:8080/megapolis/index.html'
}
}

关于javascript - 浏览器未使用 Grunt Livereload 重新加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30615554/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com