From c2a155c56150bee8553fca2cd7c9887a5b74ba97 Mon Sep 17 00:00:00 2001 From: lana-k Date: Wed, 16 Dec 2020 22:38:05 +0100 Subject: [PATCH] License file is missing in the build #21 --- vue.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vue.config.js b/vue.config.js index 2c8291e..603d6bd 100644 --- a/vue.config.js +++ b/vue.config.js @@ -8,7 +8,8 @@ module.exports = { // This wasm file will be fetched dynamically when we initialize sql.js // It is important that we do not change its name, and that it is in the same folder as the js { from: 'node_modules/sql.js/dist/sql-wasm.wasm', to: 'js/' }, - { from: 'node_modules/sql.js/dist/worker.sql-wasm.js', to: 'js/' } + { from: 'node_modules/sql.js/dist/worker.sql-wasm.js', to: 'js/' }, + { from: 'LICENSE', to: './' } ]) ] }