我用以下内容启动了我的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但我没有看到它。
答案 0 :(得分:1)
下面不是完美的解决方案,但至少它停止了热重装。
对于使用Webpack 3和Chrome(67.0.3396.99)DevTools的Nuxt 1.4.0:
这将停止热装-还会引发错误消息。
可能会帮助某人-它为我做了:)
答案 1 :(得分:0)