mirror of
				https://github.com/filebrowser/filebrowser.git
				synced 2025-11-04 11:23:02 +00:00 
			
		
		
		
	Former-commit-id: a0a4589357862c2bd083e9f84cc234ef9ecdf2b6 [formerly ee8797966d10488dd8375fca7f682c80e5f21ef1] [formerly 116a13d907cea4a53448fbcd3e075aa8890b423f [formerly 9adada30674717ca76431dea10501606b38ab46f]] Former-commit-id: 9993fa98d9ea12dac215eb90f9550682118c6728 [formerly da641e3ed83bb471d31c95f2a324fd05901b33a8] Former-commit-id: 1322b5880b009ec6ade22255dec3d145f480209e
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// see http://vuejs-templates.github.io/webpack for documentation.
 | 
						|
var path = require('path')
 | 
						|
 | 
						|
module.exports = {
 | 
						|
  build: {
 | 
						|
    env: {
 | 
						|
      NODE_ENV: '"production"'
 | 
						|
    },
 | 
						|
    index: path.resolve(__dirname, '../dist/index.html'),
 | 
						|
    assetsRoot: path.resolve(__dirname, '../dist'),
 | 
						|
    assetsSubDirectory: 'static',
 | 
						|
    assetsPublicPath: '/',
 | 
						|
    productionSourceMap: true,
 | 
						|
    // Gzip off by default as many popular static hosts such as
 | 
						|
    // Surge or Netlify already gzip all static assets for you.
 | 
						|
    // Before setting to `true`, make sure to:
 | 
						|
    // npm install --save-dev compression-webpack-plugin
 | 
						|
    productionGzip: false,
 | 
						|
    productionGzipExtensions: ['js', 'css'],
 | 
						|
    // Run the build command with an extra argument to
 | 
						|
    // View the bundle analyzer report after build finishes:
 | 
						|
    // `npm run build --report`
 | 
						|
    // Set to `true` or `false` to always turn it on or off
 | 
						|
    bundleAnalyzerReport: process.env.npm_config_report
 | 
						|
  },
 | 
						|
  dev: {
 | 
						|
    env: {
 | 
						|
      NODE_ENV: '"development"'
 | 
						|
    },
 | 
						|
    index: path.resolve(__dirname, '../dist_dev/templates/index.html'),
 | 
						|
    assetsRoot: path.resolve(__dirname, '../dist_dev/'),
 | 
						|
    assetsSubDirectory: '_',
 | 
						|
    assetsPublicPath: '{{ .BaseURL }}',
 | 
						|
    produceSourceMap: true
 | 
						|
  }
 | 
						|
}
 |