通过 100+ 条技巧学习 Nuxt!

运行时配置

了解如何将 Nuxt 2 迁移到 Nuxt 3 的运行时配置。

如果您希望在 Nuxt 3 应用程序中引用环境变量,则需要使用运行时配置。

在组件中引用这些变量时,您必须在 setup 方法(或 Nuxt 插件)中使用 useRuntimeConfig 组合式函数。

在应用程序的 server/ 部分中,您可以直接使用 useRuntimeConfig,而无需任何导入。

请在文档 > 指南 > 深入了解 > 运行时配置中阅读更多内容。

迁移

  1. 将应用程序中使用的任何环境变量添加到 nuxt.config 文件的 runtimeConfig 属性中。
  2. 在应用程序的 Vue 部分中,将 process.env 迁移到 useRuntimeConfig
export default defineNuxtConfig({
  runtimeConfig: {
    // Private config that is only available on the server
    apiSecret: '123',
    // Config within public will be also exposed to the client
    public: {
      apiBase: '/api'
    }
  },
})