Skip to content

Commit 40ee0c1

Browse files
authored
Merge pull request #37 from franciscolourenco/fix-html-unused-html-files
Fix .html files not being used
2 parents 6816efc + 7367cfd commit 40ee0c1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

generator/index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ module.exports = (api, _options) => {
6868

6969
pkg.vue.pages['popup/popup'] = {
7070
entry: 'src/popup/popup.js',
71+
template: 'src/popup/popup.html',
7172
title: 'Popup'
7273
}
7374
}
@@ -77,6 +78,7 @@ module.exports = (api, _options) => {
7778

7879
pkg.vue.pages['options/options'] = {
7980
entry: 'src/options/options.js',
81+
template: 'src/options/options.html',
8082
title: 'Options'
8183
}
8284
}
@@ -86,6 +88,7 @@ module.exports = (api, _options) => {
8688

8789
pkg.vue.pages['override/override'] = {
8890
entry: 'src/override/override.js',
91+
template: 'src/override/override.html',
8992
title: 'Override'
9093
}
9194
}
@@ -96,6 +99,7 @@ module.exports = (api, _options) => {
9699

97100
pkg.vue.pages['standalone/standalone'] = {
98101
entry: 'src/standalone/standalone.js',
102+
template: 'src/standalone/standalone.html',
99103
filename: 'app.html',
100104
title: name
101105
}

0 commit comments

Comments
 (0)