mirror of
				https://github.com/KevinMidboe/vue-js-modal.git
				synced 2025-10-29 18:00:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			225 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			225 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const path = require('path')
 | 
						|
const webpack = require('webpack')
 | 
						|
const merge = require('webpack-merge')
 | 
						|
const base = require('./webpack.base.config')
 | 
						|
 | 
						|
module.exports = merge(base, {
 | 
						|
  output: {
 | 
						|
    filename: 'index.js'
 | 
						|
  }
 | 
						|
})
 |