第一次上nuxt。我正在尝试添加客户端库。
在普通的 html 中,我只需将其添加到我的 index.html 文件中。但我不知道如何在 nuxt 上做同样的事情。
我如何添加它?
这是我的配置
module.exports = {
/*
** Headers of the page
*/
head: {
title: 'digglu',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: 'social media site' },
{ name: 'google-signin-client_id', content:'xxx.apps.googleusercontent.com' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
]
},
/*
** Customize the progress-bar color
*/
loading: { color: '#3B8070' },
/*
** Build configuration
*/
build: {
/*
** Run ESLINT on save
*/
extend (config, ctx) {
if (ctx.dev && ctx.isClient) {
config.module.rules.push({
enforce: 'pre',
test: /\.(js|vue)$/,
loader: 'eslint-loader',
exclude: /(node_modules)/
})
}
}
}
}