Nuxt.js 找不到插件:/tmp/build_fb2cdbad/plugins/heap.js

Nuxt.js Plugin not found: /tmp/build_fb2cdbad/plugins/heap.js

我正在尝试使用 nuxt.config.js 导入插件。但是在构建应用程序时找不到插件。但是当我 运行 使用 npm run dev 的应用程序时它可以找到它。我使用的是 nuxt.js 版本:2.14.6。 我的 nuxt.config.js 文件:

export default {
  // Global page headers (https://go.nuxtjs.dev/config-head)
  head: {
    title: 'Trending',
    meta: [
      { charset: 'utf-8' },
      { name: 'viewport', content: 'width=device-width, initial-scale=1' },
      { hid: 'description', name: 'description', content: '' }
    ],
    link: [
      { rel: 'icon', type: 'image/x-icon', href: '/logo.jpeg' }
    ]
  },

  // Global CSS (https://go.nuxtjs.dev/config-css)
  css: [
  ],

  // Plugins to run before rendering page (https://go.nuxtjs.dev/config-plugins)
  plugins: [
    '@/plugins/heap.js'
  ],

  // Auto import components (https://go.nuxtjs.dev/config-components)
  components: true,

  // Modules for dev and build (recommended) (https://go.nuxtjs.dev/config-modules)
  buildModules: [
    // https://go.nuxtjs.dev/tailwindcss
    '@nuxtjs/tailwindcss',
  ],

  // Modules (https://go.nuxtjs.dev/config-modules)
  modules: [
    // https://go.nuxtjs.dev/axios
    '@nuxtjs/axios',
    'cookie-universal-nuxt',
    '@nuxtjs/sentry',
  ],

  sentry: {
    dsn: 'SECRET',
  },

  // Axios module configuration (https://go.nuxtjs.dev/config-axios)
  axios: {},

  // Build Configuration (https://go.nuxtjs.dev/config-build)
  build: {
  }
}

在项目目录的插件文件夹中创建heap.js 并在 nuxt.config.js 中指定模式

plugins: [
    {src: '~/plugins/something.js', mode: 'server'},
  ],