@wirelessmatch/webpack-config

Standard webpack.config for WirelessMatch React deploy.

Usage no npm install needed!

<script type="module">
  import wirelessmatchWebpackConfig from 'https://cdn.skypack.dev/@wirelessmatch/webpack-config';
</script>

README

Wireless Match ²

Standard Webpack deployment for React


About

This exports the standard webpack configuration for WirelessMatch React deployments.


Installation

npm install @wirelessmatch/webpack

Usage

webpack.config.js

const config = require("@wirelessmatch/webpack");

module.exports = config({
  title: "Wireless Match"
})

Arguments


  • title - Title of HTML webpage by default.
  • dir - Working directory (optional)
  • mode - Webpack mode - "development" | "production"

@gabeklein