From cf9436f0e88b788ac0a6a9e2faa8e0bea4e2b44b Mon Sep 17 00:00:00 2001 From: Thomas Ballmann Date: Sat, 28 Mar 2020 10:38:04 +0100 Subject: [PATCH] fix long filenames --- app/src/router/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/router/index.js b/app/src/router/index.js index e66570f..3d93aca 100644 --- a/app/src/router/index.js +++ b/app/src/router/index.js @@ -1,8 +1,8 @@ import Vue from 'vue' import VueRouter from 'vue-router' -const Dashboard = () => import(/* webpackChunkName: "dashboard" */ '../views/Dashboard') -const Settings = () => import(/* webpackChunkName: "settings" */ '../views/Settings') +const Dashboard = () => import('../views/Dashboard') +const Settings = () => import('../views/Settings') //const Wifi = () => import(/* webpackChunkName: "wifi" */ '../views/Wifi') //const Sandbox = () => import(/* webpackChunkName: "sandbox" */ '../views/Sandbox')