我正在嘗試使用 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: { }}
找不到 Nuxt.js 插件:/tmp/build_fb2cdbad/plugins/heap.js
慕哥9229398
2023-06-29 22:32:29