Sha256: 7e2c6fc292cd16d0c8dfcf33b26d8f3c86dee9e3a01813a4ac5de423d25ec6b1

Contents?: true

Size: 758 Bytes

Versions: 12

Compression:

Stored size: 758 Bytes

Contents

const path = require("path");

module.exports = {
    mode: 'development',
    entry: `./src/js/headmin.js`,
    output: {
        path: path.join(__dirname, 'dist/js'),
        filename: 'headmin.js'
    },
    module: {
        rules: [
            {
                test:/\.css$/,
                use:['style-loader','css-loader']
            },
            {
                test: /\.js$/,
                exclude: /node_modules\/(?!bullets-js)/,
                use: {
                    loader: 'babel-loader',
                    options: {
                        presets: [
                            ['@babel/preset-env', { targets: "defaults" }]
                        ]
                    }
                }
            }
        ]
    }
};

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
headmin-0.2.9 webpack.config.js
headmin-0.2.8 webpack.config.js
headmin-0.2.7 webpack.config.js
headmin-0.2.6 webpack.config.js
headmin-0.2.5 webpack.config.js
headmin-0.2.4 webpack.config.js
headmin-0.2.3 webpack.config.js
headmin-0.2.2 webpack.config.js
headmin-0.2.1 webpack.config.js
headmin-0.2.0 webpack.config.js
headmin-0.1.2 webpack.config.js
headmin-0.1.1 webpack.config.js