glitch.com 观看文件无法正常工作
glitch.com watch file not working properly
我正在 glitch.com 上创建一个 watch.json
文件,遵循以下说明:https://glitch.happyfox.com/kb/article/60-can-i-change-which-files-cause-my-app-to-restart/
我的目标是在每次编辑 JS 或 CSS 文件后,不 自动重启浏览器页面。或者当它发生时,它应该在 50 秒后限制重新加载。
{
"install": {
"include": [
"^package\.json$",
"^\.env$"
]
},
"restart": {
"exclude": [
"^public/",
"^dist/",
"\.js$",
"\.md$",
"\.html$",
"\.css$"
],
"include": [
"\watch.json"
]
},
"throttle": 50000
}
遗憾的是,这似乎不起作用。 JS 或 CSS 文件中的任何更改都将立即导致重新加载。有什么问题吗?
watch.json 文件引用 build/restart 次全栈应用程序,而不是浏览器 window 次刷新。您可以在编辑器的项目菜单中关闭“更改时刷新应用程序”。参见:https://help.glitch.com/kb/article/46-can-i-turn-off-or-on-automatic-refreshing-of-the-app-preview-when-i-make-changes/
我正在 glitch.com 上创建一个 watch.json
文件,遵循以下说明:https://glitch.happyfox.com/kb/article/60-can-i-change-which-files-cause-my-app-to-restart/
我的目标是在每次编辑 JS 或 CSS 文件后,不 自动重启浏览器页面。或者当它发生时,它应该在 50 秒后限制重新加载。
{
"install": {
"include": [
"^package\.json$",
"^\.env$"
]
},
"restart": {
"exclude": [
"^public/",
"^dist/",
"\.js$",
"\.md$",
"\.html$",
"\.css$"
],
"include": [
"\watch.json"
]
},
"throttle": 50000
}
遗憾的是,这似乎不起作用。 JS 或 CSS 文件中的任何更改都将立即导致重新加载。有什么问题吗?
watch.json 文件引用 build/restart 次全栈应用程序,而不是浏览器 window 次刷新。您可以在编辑器的项目菜单中关闭“更改时刷新应用程序”。参见:https://help.glitch.com/kb/article/46-can-i-turn-off-or-on-automatic-refreshing-of-the-app-preview-when-i-make-changes/