Skip to content

Instantly share code, notes, and snippets.

@squadwuschel
Last active August 27, 2016 21:33
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 squadwuschel/a8ccc87c4e192aefdd695cc886824271 to your computer and use it in GitHub Desktop.
Save squadwuschel/a8ccc87c4e192aefdd695cc886824271 to your computer and use it in GitHub Desktop.
Bundles für React und React-dom
//Bundles für die React Bibliothek und Jquery
bundles.Add(new ScriptBundle("~/bundles/libraries").Include(
"~/Scripts/jquery-{version}.js",
"~/node_modules/react/dist/react-with-addons.js",
"~/node_modules/react-dom/dist/react-dom.js"
));
//Bundle für unsere React Anwendung
bundles.Add(new ScriptBundle("~/bundles/app").Include(
"~/ScriptsApp/helloWorldTypeScript.js",
"~/ScriptsApp/HelloWorldJavaScript.js"
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment