All Downloads are FREE. Search and download functionalities are using the official Maven repository.

router_ui.src.webpack.config.js Maven / Gradle / Ivy

There is a newer version: 0.289
Show newest version
/* global __dirname */
const process = require('process');

const mode = process.argv.includes('-p') ? 'production' : 'development';

module.exports = {
    entry: {
        'index': __dirname +'/index.jsx',
    },
    mode,
    module: {
        rules: [
            {
                test: /\.(js|jsx)$/,
                exclude: /node_modules/,
                use: ['babel-loader']
            }
        ]
    },
    resolve: {
        extensions: ['*', '.js', '.jsx']
    },
    output: {
        path: __dirname + '/../dist',
        filename: '[name].js'
    }
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy