From 7282f43f7b934c14976e68181a0523a680062a62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Manuel=20Aguirre?= Date: Fri, 27 Jul 2018 16:54:01 -0400 Subject: [PATCH] Missing babel configuration in sw-precache example (#4856) Missing configuration in package.json and .babelrc causes this example to be broken after installing and running the example. --- examples/with-sw-precache/.babelrc | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 examples/with-sw-precache/.babelrc diff --git a/examples/with-sw-precache/.babelrc b/examples/with-sw-precache/.babelrc new file mode 100644 index 00000000..98012edd --- /dev/null +++ b/examples/with-sw-precache/.babelrc @@ -0,0 +1,5 @@ +{ + "presets": [ + [ "next/babel" ] + ] +}