Skip to content

Commit f43ac57

Browse files
committed
rename guides
1 parent 2daec81 commit f43ac57

24 files changed

+6
-6
lines changed

src/content/guides/asset-management.md renamed to src/content/guides/asset-management.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ contributors:
1313
- astonizer
1414
---
1515

16-
If you've been following the guides from the start, you will now have a small project that shows "Hello webpack". Now let's try to incorporate some other assets, like images, to see how they can be handled.
16+
If you've been following the guides from the start, you will now have a small project that shows "Hello webpack". Now let's try to incorporate some other assets, like images, to see how they can be handled.
1717

1818
Prior to webpack, front-end developers would use tools like [grunt](https://gruntjs.com/) and [gulp](https://gulpjs.com/) to process these assets and move them from their `/src` folder into their `/dist` or `/build` directory. The same idea was used for JavaScript modules, but tools like webpack will **dynamically bundle** all dependencies (creating what's known as a [dependency graph](/concepts/dependency-graph)). This is great because every module now _explicitly states its dependencies_ and we'll avoid bundling modules that aren't in use.
1919

src/content/guides/caching.md renamed to src/content/guides/caching.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ webpack-demo
5252
entry: './src/index.js',
5353
plugins: [
5454
new HtmlWebpackPlugin({
55-
-       title: 'Output Management',
56-
+       title: 'Caching',
55+
- title: 'Output Management',
56+
+ title: 'Caching',
5757
}),
5858
],
5959
output: {
@@ -103,7 +103,7 @@ As we learned in [code splitting](/guides/code-splitting), the [`SplitChunksPlug
103103
entry: './src/index.js',
104104
plugins: [
105105
new HtmlWebpackPlugin({
106-
      title: 'Caching',
106+
title: 'Caching',
107107
}),
108108
],
109109
output: {
@@ -146,7 +146,7 @@ This can be done by using the [`cacheGroups`](/plugins/split-chunks-plugin/#spli
146146
entry: './src/index.js',
147147
plugins: [
148148
new HtmlWebpackPlugin({
149-
      title: 'Caching',
149+
title: 'Caching',
150150
}),
151151
],
152152
output: {

src/content/guides/code-splitting.md renamed to src/content/guides/code-splitting.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ contributors:
3333
- chenxsan
3434
- Adarah
3535
related:
36-
- title: <link rel=prefetch/preload”> in webpack
36+
- title: &lt;link rel="prefetch/preload"&gt; in webpack
3737
url: https://medium.com/webpack/link-rel-prefetch-preload-in-webpack-51a52358f84c
3838
- title: Preload, Prefetch And Priorities in Chrome
3939
url: https://medium.com/reloading/preload-prefetch-and-priorities-in-chrome-776165961bbf
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)