From af934bb710e53a08b7d00ccc57d91bad8f7d7b04 Mon Sep 17 00:00:00 2001 From: Debbie O'Brien Date: Wed, 15 Aug 2018 21:43:32 +0200 Subject: [PATCH] added name to the contribution sorry just a small thing but only just learnt how to add my name to the contribution. hope thats ok to add it in here, if not no worries --- src/content/concepts/loaders.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/content/concepts/loaders.md b/src/content/concepts/loaders.md index c0eaa966f6e6..b035040f6306 100644 --- a/src/content/concepts/loaders.md +++ b/src/content/concepts/loaders.md @@ -10,6 +10,7 @@ contributors: - simon04 - jhnns - byzyk + - debs-obrien --- Loaders are transformations that are applied on the source code of a module. They allow you to pre-process files as you `import` or “load” them. Thus, loaders are kind of like “tasks” in other build tools and provide a powerful way to handle front-end build steps. Loaders can transform files from a different language (like TypeScript) to JavaScript or inline images as data URLs. Loaders even allow you to do things like `import` CSS files directly from your JavaScript modules!