Import the predictions app

This is a direct import of
https://github.com/filipkujawa/spartan-predictions, but with the API
key removed.

I also added a BUILD file to make sure that bazel doesn't try to
interpret any files in this directory.

We'll clean up the code and make it build with bazel in future
patches.

Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: Iaadaf031ebc6b1ec9fd33e25f1bbfb9043d1bba3
Signed-off-by: Filip Kujawa <filip.j.kujawa@gmail.com>
diff --git a/predictions/svelte.config.js b/predictions/svelte.config.js
new file mode 100644
index 0000000..1398542
--- /dev/null
+++ b/predictions/svelte.config.js
@@ -0,0 +1,19 @@
+import adapter from '@sveltejs/adapter-auto';
+import preprocess from 'svelte-preprocess';
+
+/** @type {import('@sveltejs/kit').Config} */
+const config = {
+	// Consult https://github.com/sveltejs/svelte-preprocess
+	// for more information about preprocessors
+	preprocess: [
+		preprocess({
+			postcss: true
+		})
+	],
+
+	kit: {
+		adapter: adapter()
+	}
+};
+
+export default config;