mirror of
				https://github.com/veops/cmdb.git
				synced 2025-11-04 13:46:17 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			278 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			278 B
		
	
	
	
		
			Python
		
	
	
	
	
	
'use strict'
 | 
						|
const path = require('path')
 | 
						|
 | 
						|
function resolve (dir) {
 | 
						|
  return path.join(__dirname, '.', dir)
 | 
						|
}
 | 
						|
 | 
						|
module.exports = {
 | 
						|
  context: path.resolve(__dirname, './'),
 | 
						|
  resolve: {
 | 
						|
    extensions: ['.js', '.vue', '.json'],
 | 
						|
    alias: {
 | 
						|
      '@': resolve('src')
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |