mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01: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:
parent
34c2725fe1
commit
c5fde53c8d
@ -115,7 +115,6 @@ With dependencies installed and our project folder ready for us to start coding,
|
||||
<h1>Hello, Bootstrap and Webpack!</h1>
|
||||
<button class="btn btn-primary">Primary button</button>
|
||||
</div>
|
||||
<script src="./main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
```
|
||||
@ -129,7 +128,7 @@ With dependencies installed and our project folder ready for us to start coding,
|
||||
// ...
|
||||
"scripts": {
|
||||
"start": "webpack serve",
|
||||
"build": "webpack build",
|
||||
"build": "webpack build --mode=production",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
// ...
|
||||
|
Loading…
Reference in New Issue
Block a user