gpt4 book ai didi

javascript - vue-cli 3 中的 Webpack postcss 前缀

转载 作者:行者123 更新时间:2023-12-03 00:06:17 29 4
gpt4 key购买 nike

我需要使用 webpack 为 Bulma css 类添加前缀。我找到了一个示例,但我的应用程序使用 Vue CLI 3,我不确定如何将 webpack 配置转换为 vue.config.js。

This is the webpack config

在我的 vue.config.js 中,我有以下内容:

  chainWebpack: config => {
config.module
.rule('css-prefixer')
.use(['style-loader', 'css-loader'])
.loader('postcss-loader')
.tap(options => {
// Prefixer goes here
return options
})
}

这会产生一些内部 webpack 错误。

最佳答案

只需设法在我的 vue.config.js 中完成即可

const path = require('path')
const prefixer = require('postcss-prefixer')

module.exports = {
css: {
loaderOptions: {
postcss: {
plugins: [
prefixer({
prefix: 'b-'
})
]
}
}
}
}

关于javascript - vue-cli 3 中的 Webpack postcss 前缀,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54948522/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com