Skip to content

Instantly share code, notes, and snippets.

@RichardBray
Created January 10, 2018 10:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RichardBray/c40d7453dd4aec91244d60aeb0f8ed7f to your computer and use it in GitHub Desktop.
Save RichardBray/c40d7453dd4aec91244d60aeb0f8ed7f to your computer and use it in GitHub Desktop.
webpack config with linking info
const path = require("path");
module.exports = {
entry: "./src/index.tsx",
output: {
path: path.resolve(__dirname, "build"),
filename: "bundle.js"
},
module: {},
plugins: []
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment