vue.config.js 275 B

123456789101112
  1. const { defineConfig } = require('@vue/cli-service')
  2. module.exports = defineConfig({
  3. transpileDependencies: true,
  4. css: {
  5. extract: false, // 将组件的 style 打包到 js 文件中
  6. },
  7. configureWebpack: {
  8. output: {
  9. libraryExport: 'default'
  10. }
  11. }
  12. })