Skip to content

Commit

Permalink
chore: fix examples for open target not working (#4575)
Browse files Browse the repository at this point in the history
  • Loading branch information
malcolm-kee committed Sep 19, 2022
1 parent 7da7336 commit ef2f9e9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions examples/open-target-multiple/webpack.config.js
Expand Up @@ -15,12 +15,12 @@ module.exports = [
plugins: [
new HtmlWebpackPlugin({
filename: "example1.html",
template: "../../.assets/layout.html",
template: "../.assets/layout.html",
title: "Open Target (Multiple) / Example / Page 1",
}),
],
}),
{
setup({
context: __dirname,
entry: "./app2.js",
output: {
Expand All @@ -29,9 +29,9 @@ module.exports = [
plugins: [
new HtmlWebpackPlugin({
filename: "example2.html",
template: "../../.assets/layout.html",
template: "../.assets/layout.html",
title: "Open Target (Multiple) / Example / Page 2",
}),
],
},
}),
];
2 changes: 1 addition & 1 deletion examples/open-target/webpack.config.js
Expand Up @@ -11,7 +11,7 @@ module.exports = setup({
plugins: [
new HtmlWebpackPlugin({
filename: "example.html",
template: "../../.assets/layout.html",
template: "../.assets/layout.html",
title: "Open Target / Example",
}),
],
Expand Down

0 comments on commit ef2f9e9

Please sign in to comment.