docs(rollup-plugin-html): fix syntax error in example (#1511)

This commit is contained in:
Pesche
2020-04-15 17:44:51 +02:00
committed by GitHub
parent 2e0d3c12c1
commit ba1ee2d23a

View File

@@ -102,7 +102,7 @@ export default {
output: { dir: 'dist' },
plugins: [
html({
inputHtml: '<html><script type="module" src="./app.js></script></html>',
inputHtml: '<html><script type="module" src="./app.js"></script></html>',
}),
],
};