mirror of
				https://github.com/teamhanko/hanko.git
				synced 2025-11-04 08:57:55 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			223 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			223 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const baseConfig = require("./webpack.config.cjs");
 | 
						|
 | 
						|
baseConfig.module.rules.push({
 | 
						|
  test: /\.c?js$/,
 | 
						|
  enforce: "pre",
 | 
						|
  use: ["source-map-loader"],
 | 
						|
})
 | 
						|
 | 
						|
module.exports = {
 | 
						|
  devtool: 'eval-source-map',
 | 
						|
  ...baseConfig
 | 
						|
};
 |