mirror of
				https://github.com/ecomfe/vue-echarts.git
				synced 2025-11-04 11:57:17 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			348 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			348 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* eslint-disable @typescript-eslint/no-var-requires */
 | 
						|
const nested = require("postcss-nested");
 | 
						|
 | 
						|
module.exports = {
 | 
						|
  outputDir: "demo",
 | 
						|
  css: {
 | 
						|
    loaderOptions: {
 | 
						|
      postcss: {
 | 
						|
        plugins: [nested()]
 | 
						|
      }
 | 
						|
    }
 | 
						|
  },
 | 
						|
  chainWebpack: config => {
 | 
						|
    config
 | 
						|
      .entry("app")
 | 
						|
      .clear()
 | 
						|
      .add("./src/demo/main.ts");
 | 
						|
  }
 | 
						|
};
 |