From da87973b85b3696c468be25c37f825db3d1a75d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Wed, 16 Oct 2019 14:27:46 +0200 Subject: [PATCH] Fix path for collection entrypoint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- webpack.common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.common.js b/webpack.common.js index 4af468509..1373daead 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -4,7 +4,7 @@ const { VueLoaderPlugin } = require('vue-loader'); module.exports = { entry: { deck: path.join(__dirname, 'src', 'main.js'), - collections: ['./src/init-collections.js'] + collections: path.join(__dirname, 'src', 'init-collections.js'), }, output: { filename: '[name].js',