mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-17 19:06:40 +02:00
Docs: update Webpack guide (#38345)
* Docs: remove `<script>` from `index.html` in Webpack guide * Add `mode=production` to `build` step in Webpack guide
This commit is contained in:
@@ -115,7 +115,6 @@ With dependencies installed and our project folder ready for us to start coding,
|
|||||||
<h1>Hello, Bootstrap and Webpack!</h1>
|
<h1>Hello, Bootstrap and Webpack!</h1>
|
||||||
<button class="btn btn-primary">Primary button</button>
|
<button class="btn btn-primary">Primary button</button>
|
||||||
</div>
|
</div>
|
||||||
<script src="./main.js"></script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
```
|
```
|
||||||
@@ -129,7 +128,7 @@ With dependencies installed and our project folder ready for us to start coding,
|
|||||||
// ...
|
// ...
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "webpack serve",
|
"start": "webpack serve",
|
||||||
"build": "webpack build",
|
"build": "webpack build --mode=production",
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
},
|
},
|
||||||
// ...
|
// ...
|
||||||
|
Reference in New Issue
Block a user