gpt4 book ai didi

nuxt.js 热重载很慢

转载 作者:行者123 更新时间:2023-12-04 04:29:39 28 4
gpt4 key购买 nike

我想知道nuxt需要2或3秒才能进行热重载更改是否正常?
例如,对于 Gatsby,Hot Reloads 是即时的。我错过了什么?
这是我的 nuxt 构建配置:

build: {
parallel: true,
cache: true,
extractCSS: process.env.NODE_ENV === 'production',
optimizeCSS: process.env.NODE_ENV === 'production',
transpile: ['vue-intersect'],
},

最佳答案

我认为您的问题是因为您将属性组件设置为 true。

  • Nuxt.js 2.13+ 可以扫描并自动导入你的组件。但默认情况下,此选项设置为 false。您不需要将其设置为 true。

  • 当设置为 true 或使用对象时,它将包含 nuxt/components 依赖项,并在您在模板中使用它们时自动导入您的组件(在 ~/components 中定义)。
    ...
    // change to false, or remove this config.
    components: true
    ...
    仅当您知道为什么需要此属性为 true 时才设置为 true。
    因此,您可以在 Nuxt 文档 https://nuxtjs.org/api/configuration-components 中找到有关此内容的更多信息并在 Github 文档中 https://github.com/nuxt/components .

    关于nuxt.js 热重载很慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63246744/

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