mirror of
				https://github.com/KevinMidboe/vue-js-modal.git
				synced 2025-10-29 18:00:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			76 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
 | 
						|
var path = require('path')
 | 
						|
var webpack = require('webpack')
 | 
						|
 | 
						|
module.exports = {
 | 
						|
  entry: './examples/src/main.js',
 | 
						|
  output: {
 | 
						|
    path: path.resolve(__dirname, './dist'),
 | 
						|
    publicPath: '/dist/',
 | 
						|
    filename: 'build.js'
 | 
						|
  },
 | 
						|
  externals: [
 | 
						|
 | 
						|
  ],
 | 
						|
  module: {
 | 
						|
    rules: [
 | 
						|
      {
 | 
						|
        test: /\.vue$/,
 | 
						|
        loader: 'vue-loader',
 | 
						|
        options: {
 | 
						|
          loaders: {
 | 
						|
            'scss': 'vue-style-loader!css-loader!sass-loader',
 | 
						|
            'sass': 'vue-style-loader!css-loader!sass-loader?indentedSyntax'
 | 
						|
          }
 | 
						|
        }
 | 
						|
      },
 | 
						|
      {
 | 
						|
        test: /\.js$/,
 | 
						|
        loader: 'babel-loader',
 | 
						|
        exclude: /node_modules/
 | 
						|
      },
 | 
						|
      {
 | 
						|
        test: /\.(png|jpg|gif|svg)$/,
 | 
						|
        loader: 'file-loader',
 | 
						|
        options: {
 | 
						|
          name: '[name].[ext]?[hash]'
 | 
						|
        }
 | 
						|
      }
 | 
						|
    ]
 | 
						|
  },
 | 
						|
  resolve: {
 | 
						|
    alias: {
 | 
						|
      'vue': 'vue/dist/vue.js',
 | 
						|
      'nice-vue-components$':  path.resolve(__dirname, './components/index.js')
 | 
						|
    }
 | 
						|
  },
 | 
						|
  devServer: {
 | 
						|
    historyApiFallback: true
 | 
						|
  },
 | 
						|
  performance: {
 | 
						|
    hints: false
 | 
						|
  },
 | 
						|
  devtool: '#eval-source-map'
 | 
						|
}
 | 
						|
 | 
						|
if (process.env.NODE_ENV === 'production') {
 | 
						|
  module.exports.devtool = '#source-map'
 | 
						|
  // http://vue-loader.vuejs.org/en/workflow/production.html
 | 
						|
  module.exports.plugins = (module.exports.plugins || []).concat([
 | 
						|
    new webpack.DefinePlugin({
 | 
						|
      'process.env': {
 | 
						|
        NODE_ENV: '"production"'
 | 
						|
      }
 | 
						|
    }),
 | 
						|
    new webpack.optimize.UglifyJsPlugin({
 | 
						|
      sourceMap: true,
 | 
						|
      compress: {
 | 
						|
        warnings: false
 | 
						|
      }
 | 
						|
    }),
 | 
						|
    new webpack.LoaderOptionsPlugin({
 | 
						|
      minimize: true
 | 
						|
    })
 | 
						|
  ])
 | 
						|
}
 |