mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	
		
			
	
	
		
			14 lines
		
	
	
		
			316 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			14 lines
		
	
	
		
			316 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|  | const path = require('path'); | ||
|  | 
 | ||
|  | module.exports = { | ||
|  |     mode: 'production', | ||
|  |     entry: { | ||
|  |         mobile: './src/public/javascripts/desktop.js', | ||
|  |     }, | ||
|  |     output: { | ||
|  |         publicPath: 'dist/', | ||
|  |         path: path.resolve(__dirname, 'src/public/dist'), | ||
|  |         filename: 'desktop.js' | ||
|  |     }, | ||
|  |     devtool: 'source-map' | ||
|  | }; |