我正在尝试添加由Sass的输出组成的我自己的CSS,但是我不知道如何按照文档所说
module.exports = {
css: [
// Load a Node.js module directly (here it's a Sass file)
'bulma',
// CSS file in the project
'@/assets/css/main.css',
// SCSS file in the project
'@/assets/css/main.scss'
]
}
但是当我打开nuxt.config.js时,我发现以下完全不同的格式
module.exports = {
/*
** Headers of the page
*/
head: {
title: 'nexus',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: 'Nuxt.js project' }
],
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, { isDev, isClient }) {
if (isDev && isClient) {
config.module.rules.push({
enforce: 'pre',
test: /\.(js|vue)$/,
loader: 'eslint-loader',
exclude: /(node_modules)/
})
}
}
}
}
如何将自己的CSS链接添加到该文件?
答案 0 :(得分:0)
有什么不同?您只需要将css部分添加到nuxt.config。那就是如果您想通过nuxt / webpack彻底处理CSS。
如果您只想添加静态css文件,请在head部分进行操作。