Skip to content
On this page

Vue-Cli配置

在Vue-Cli3中设置公用的Less文件【针对Vue-Cli3环境】

  • 首页引入vue add style-resources-loader
vue add style-resources-loader -D
const path = require('path')
modules.exports = {
  pluginOptions: {
  'style-resource-loader':{
    'patterns': [
      path.resolve(__dirname, 'src/styles/abstracts/*.style')
    ]
  }
}

Released under the MIT License.