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!