Skip to content

Commit a5a09d5

Browse files
committed
Move index.html -> html_templates
1 parent 7f10110 commit a5a09d5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
File renamed without changes.

site/webpack.dev.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const config: webpack.Configuration = {
2121
"Access-Control-Allow-Origin": "*",
2222
},
2323
historyApiFallback: {
24-
index: "index.html",
24+
index: "html_templates/index.html",
2525
},
2626
hot: true,
2727
proxy: {
@@ -34,7 +34,7 @@ const config: webpack.Configuration = {
3434
new HtmlWebpackPlugin({
3535
title: "Custom template",
3636
// Load a custom template (lodash by default)
37-
template: "index.html",
37+
template: "html_templates/index.html",
3838
inject: "body",
3939
hash: true,
4040
}),

site/webpack.prod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const config: webpack.Configuration = {
2323
new HtmlWebpackPlugin({
2424
title: "Custom template",
2525
// Load a custom template (lodash by default)
26-
template: "index.html",
26+
template: "html_templates/index.html",
2727
inject: "body",
2828
}),
2929
],

0 commit comments

Comments
 (0)