From 2e4f9e0fe34fb3f4e4820f9d35acb288167b82b7 Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Thu, 8 Feb 2018 22:36:12 -0800 Subject: [PATCH] fix imports --- templates/main.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/templates/main.js b/templates/main.js index a7cdb8f..c3b7df6 100644 --- a/templates/main.js +++ b/templates/main.js @@ -1,9 +1,7 @@ import { init } from 'sapper/runtime.js' -import { offlineNotifiction } from '../routes/_utils/offlineNotification' -import { serviceWorkerClient } from '../routes/_utils/serviceWorkerClient' import { loadPolyfills } from '../routes/_utils/loadPolyfills' - -console.log(offlineNotifiction, serviceWorkerClient) +import '../routes/_utils/offlineNotification' +import '../routes/_utils/serviceWorkerClient' loadPolyfills().then(() => { // `routes` is an array of route objects injected by Sapper