Skip to content

Commit

Permalink
Fix vue util modules. Do not process .vue.html files with asset/resou…
Browse files Browse the repository at this point in the history
…rce (#326)

* Fix vue util modules. Do not process .vue.html files with asset/resource

* Try fixing tests
  • Loading branch information
joeldenning authored Aug 26, 2021
1 parent bc3efa3 commit f004685
Show file tree
Hide file tree
Showing 3 changed files with 1,440 additions and 165 deletions.
5 changes: 5 additions & 0 deletions .changeset/selfish-rivers-marry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"webpack-config-single-spa": patch
---

Fix util vue modules. Do not process .vue.html files.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function webpackConfigSingleSpa(opts) {
},
{
test: /\.html$/i,
exclude: /node_modules/,
exclude: [/node_modules/, /\.vue\.html$/],
type: "asset/source",
},
],
Expand Down
Loading

0 comments on commit f004685

Please sign in to comment.