From 49d36f7f61e70cc089b8854eec688a10e937d115 Mon Sep 17 00:00:00 2001 From: Enthrall Records Date: Fri, 22 Feb 2019 20:27:15 -0500 Subject: [PATCH 1/2] fix index.template.html path --- core/build/webpack.base.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/build/webpack.base.config.ts b/core/build/webpack.base.config.ts index 7dd3b43651..fbe9b7ee74 100644 --- a/core/build/webpack.base.config.ts +++ b/core/build/webpack.base.config.ts @@ -19,7 +19,7 @@ import themeRoot from './theme-path'; const themeResources = themeRoot + '/resource' const themeCSS = themeRoot + '/css' const themeApp = themeRoot + '/App.vue' -const themedIndex = path.join(themeRoot, 'index.template.html') +const themedIndex = path.join(themeRoot, '/templates/index.template.html') const themedIndexMinimal = path.join(themeRoot, '/templates/index.minimal.template.html') const themedIndexBasic = path.join(themeRoot, '/templates/index.basic.template.html') const themedIndexAmp = path.join(themeRoot, '/templates/index.amp.template.html') From 48b6c674bda59b8a75361f3a6cc39ea0e0e1a3ea Mon Sep 17 00:00:00 2001 From: Enthrall Records <47048856+EnthrallRecords@users.noreply.github.com> Date: Sat, 23 Feb 2019 20:23:09 -0500 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c39e46c4c1..19f13c8d1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - fix breadcrumbs changing too early - @filrak (#2469) - add cart count config, allows you to display the item count instead of a sum of the item quantities - @pauluse (#2483) - improved product gallery load view, shows correct image on reload - @patzick (#2481, #2382) +- Fix an issue where the index.html template within a theme is ignored - @EnthrallRecords (#2489) ### Deprecated / Removed - `@vue-storefront/store` package deprecated - @filrak