可以在 nuxt.config.js 中添加 Webpack 插件:
nuxt.config.js
const webpack = require('webpack') module.exports = { build: { plugins: [ new webpack.ProvidePlugin({ '$': 'jquery', '_': 'lodash' // ...etc. }) ] } }