找不到 Nuxt.js 插件:/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: {

  }

}


慕哥9229398
浏览 111回答 1
1回答

牛魔王的故事

在项目目录的plugin文件夹中创建heap.js并在nuxt.config.js中指定模式plugins: [     {src: '~/plugins/something.js', mode: 'server'},   ],
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript