webpack.config.js
module.exports = {
// ...
devServer: {
open: {
target: "<url>",
},
},
};
Usage via CLI:
npx webpack serve --open-target <url>
webpack.config.js
module.exports = {
// ...
devServer: {
open: {
target: "/example.html#page1",
},
},
};
Usage via CLI:
npx webpack serve --open-target /example.html#page1
webpack.config.js
module.exports = {
// ...
devServer: {
open: {
app: "firefox",
},
},
};
Usage via CLI:
npx webpack serve --open-app-name firefox
webpack.config.js
module.exports = {
// ...
devServer: {
open: {
target: "/example.html#page1",
app: "firefox",
},
},
};
Usage via CLI:
npx webpack serve --open-target example.html#page1 --open-app-name firefox
Some applications may consist of multiple pages. During development it may
be useful to directly open a particular page. The page to open may be specified
as the argument to the open-target
option.
The script should open http://localhost:8080/example.html#page1
in your
default/specified browser. You should see the text on the page itself change to read Success!
.