Sha256: 7333bcf205b41d61700813f998b9b2ebe6371df7f5528bc3dc0930730059bfdf
Contents?: true
Size: 1.77 KB
Versions: 1
Compression:
Stored size: 1.77 KB
Contents
'use strict'; var path = require('path'); var webpack = require('webpack'); var StatsPlugin = require('stats-webpack-plugin'); // must match config.webpack.dev_server.port var devServerPort = 3808; // set TARGET=production on the environment to add asset fingerprints var production = process.env.TARGET === 'production'; var config = { entry: { 'application': './app/assets/javascripts/application.js' }, output: { // must match config.webpack.output_dir path: path.join(__dirname, '..', 'public', 'webpack'), publicPath: '/webpack/', filename: production ? '[name]-[chunkhash].js' : '[name].js' }, module: { loaders: [ { test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader' }, { test: /\.json$/, loader: 'json-loader' } ] }, resolve: { root: path.join(__dirname, '..', 'app', 'assets', 'javascripts') }, plugins: [ // must match config.webpack.manifest_filename new StatsPlugin('manifest.json', { // We only need assetsByChunkName chunkModules: false, source: false, chunks: false, modules: false, assets: true })] }; if (production) { config.plugins.push( new webpack.NoErrorsPlugin(), new webpack.optimize.UglifyJsPlugin({ compressor: { warnings: false }, sourceMap: false }), new webpack.DefinePlugin({ 'process.env': { NODE_ENV: JSON.stringify('production') } }), new webpack.optimize.DedupePlugin(), new webpack.optimize.OccurenceOrderPlugin() ); } else { config.devServer = { port: devServerPort, headers: { 'Access-Control-Allow-Origin': '*' } }; config.output.publicPath = '//localhost:' + devServerPort + '/webpack/'; // Source maps config.devtool = 'cheap-module-eval-source-map'; } module.exports = config;
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
code42template-2.0.0 | templates/webpack.config.js |