tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

webpack.config.js (370B)


      1 const path = require("path");
      2 
      3 module.exports = [{
      4    mode: "production",
      5    entry: `./node_modules/micromatch/index.js`,
      6    optimization: {
      7        minimize: false
      8    },
      9    output: {
     10      path: __dirname,
     11      filename: `micromatch.js`,
     12      library: "micromatch",
     13      libraryTarget: "commonjs"
     14    },
     15    node: {
     16      util: true,
     17      path: true
     18    }
     19 }];