From 232331766ee403ef0792106e71e06611ad1c8947 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20=C3=85berg=20Kultalahti?= Date: Thu, 2 Apr 2020 11:44:42 +0200 Subject: [PATCH] fixes builder path issue --- packages/builder/rollup.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/builder/rollup.config.js b/packages/builder/rollup.config.js index 518482b645..4a4081e53a 100644 --- a/packages/builder/rollup.config.js +++ b/packages/builder/rollup.config.js @@ -168,7 +168,7 @@ export default { }), copy({ targets: [ - { src: "src/index.html", dest: outputpath, rename: "__app.html" }, + { src: "src/index.html", dest: outputpath }, { src: "src/favicon.png", dest: outputpath }, { src: "src/assets", dest: outputpath }, { @@ -260,4 +260,4 @@ function serve() { } }, } -} \ No newline at end of file +}