Skip to content

Instantly share code, notes, and snippets.

@xergioalex
Last active August 20, 2018 21:13
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 xergioalex/59b2e00a530b18029598d95ad6f03044 to your computer and use it in GitHub Desktop.
Save xergioalex/59b2e00a530b18029598d95ad6f03044 to your computer and use it in GitHub Desktop.
Html markdown parser
module.exports = {
<details><summary>[mode](/concepts/mode): "production", // "production" | "development" | "none"</summary>
[mode](/concepts/mode): "production", // enable many optimizations for production builds
[mode](/concepts/mode): "development", // enabled useful tools for development
[mode](/concepts/mode): "none", // no defaults
</details>
// Chosen mode tells webpack to use its built-in optimizations accordingly.
<details><summary>[entry](/configuration/entry-context#entry): "./app/entry", // string | object | array</summary>
[entry](/configuration/entry-context#entry): ["./app/entry1", "./app/entry2"],
[entry](/configuration/entry-context#entry): {
a: "./app/entry-a",
b: ["./app/entry-b1", "./app/entry-b2"]
}
</details>
}
module.exports = {
[mode](/concepts/mode): "production", // "production" | "development" | "none"
[mode](/concepts/mode): "production", // enable many optimizations for production builds
[mode](/concepts/mode): "development", // enabled useful tools for development
[mode](/concepts/mode): "none", // no defaults
// Chosen mode tells webpack to use its built-in optimizations accordingly.
[entry](/configuration/entry-context#entry): "./app/entry", // string | object | array
[entry](/configuration/entry-context#entry): ["./app/entry1", "./app/entry2"],
[entry](/configuration/entry-context#entry): {
a: "./app/entry-a",
b: ["./app/entry-b1", "./app/entry-b2"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment