我可以在使用nuxt时关闭热重新加载吗?

时间:2018-01-14 18:21:49

标签: vuejs2 nuxt.js

我用以下内容启动了我的vue / nuxt应用程序: npx create-nuxt-app

我想在运行开发服务器时关闭热重新加载功能。我无法在任何地方找到一个选项。在nuxt命令的帮助中,有:

nuxt --help Description Starts the application in development mode (hot-code reloading, error reporting, etc) Usage $ nuxt dev <dir> -p <port number> -H <hostname> Options --port, -p A port number on which to start the application --hostname, -H Hostname on which to start the application --spa Launch in SPA mode --universal Launch in Universal mode (default) --config-file, -c Path to Nuxt.js config file (default: nuxt.config.js) --help, -h Displays this message 没有开关关闭热重装。我假设它可能在nuxt.config.js文件中,但我找不到可能的选项。

我查看了从此页开始的文档:https://nuxtjs.org/api/configuration-build但我没有看到它。

2 个答案:

答案 0 :(得分:1)

下面不是完美的解决方案,但至少它停止了热重装。

对于使用Webpack 3和Chrome(67.0.3396.99)DevTools的Nuxt 1.4.0:

  1. 在Chrome中打开开发人员工具
  2. 单击右上角的三个点(...)
  3. 点击更多工具->请求阻止
  4. 点击“启用请求阻止”并添加“ * hot-update.json”

enter image description here

这将停止热装-还会引发错误消息。

可能会帮助某人-它为我做了:)

答案 1 :(得分:0)

在您的nuxt.config.js中

[![module.exports = {
...
  output: {
    publicPath: ''
  },
...
}

这里是solution,请查看线程中的讨论以了解更多信息

imageref