summaryrefslogblamecommitdiffstats
path: root/projects/text_to_speech/webpack.config.js
blob: 0b984592197463031a0169c7f2115d71043c4747 (plain) (tree)



















                                            
const path = require('path');
const webpack = require('webpack');

module.exports = {
    mode: 'production',
    entry: {
        server: './index.js',
    },
    output: {
        path: path.join(__dirname, 'build'),
        filename: 'index.js'
    },
    module: {
        rules: [
            {
                exclude: /node_modules/
            }
        ]
    }
};