Skip to content

Commit

Permalink
Merge pull request #2489 from EnthrallRecords/bugfix/template-paths-c…
Browse files Browse the repository at this point in the history
…hanged-in-1.8

bugfix/template-paths-changed-in-1.8
  • Loading branch information
patzick committed Feb 24, 2019
2 parents d61b75b + 65820b5 commit bc7e22e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,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
Expand Down
2 changes: 1 addition & 1 deletion core/build/webpack.base.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit bc7e22e

Please sign in to comment.