Skip to content

Instantly share code, notes, and snippets.

@victors1681
Last active December 16, 2018 20:02
Show Gist options
  • Save victors1681/9f2f6ef2374bed0014c3b8964c40867d to your computer and use it in GitHub Desktop.
Save victors1681/9f2f6ef2374bed0014c3b8964c40867d to your computer and use it in GitHub Desktop.
const path = require("path");
module.exports = env => {
const config = {
mode: env.NODE_ENV === "development" ? "development" : "production",
entry: {
app: [path.resolve(__dirname, "./src/index.js")]
}
};
return config;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment