mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 11:56:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			504 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			504 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import path from "path";
 | 
						|
import assetPath from "./src/services/asset_path.js";
 | 
						|
 | 
						|
module.exports = {
 | 
						|
    mode: 'production',
 | 
						|
    entry: {
 | 
						|
        setup: './src/public/app/setup.js',
 | 
						|
        mobile: './src/public/app/mobile.js',
 | 
						|
        desktop: './src/public/app/desktop.js',
 | 
						|
    },
 | 
						|
    output: {
 | 
						|
        publicPath: `${assetPath}/app-dist/`,
 | 
						|
        path: path.resolve(__dirname, 'src/public/app-dist'),
 | 
						|
        filename: '[name].js',
 | 
						|
    },
 | 
						|
    devtool: 'source-map',
 | 
						|
    target: 'electron-renderer',
 | 
						|
};
 |