about summary refs log tree commit diff stats
path: root/snowpack.config.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'snowpack.config.mjs')
-rw-r--r--snowpack.config.mjs26
1 files changed, 26 insertions, 0 deletions
diff --git a/snowpack.config.mjs b/snowpack.config.mjs
new file mode 100644
index 0000000..f4340c6
--- /dev/null
+++ b/snowpack.config.mjs
@@ -0,0 +1,26 @@
+/** @type {import("snowpack").SnowpackUserConfig } */
+export default {
+  mount: {
+    /* ... */
+  },
+  plugins: [
+    /* ... */
+  ],
+  routes: [
+    /* Enable an SPA Fallback in development: */
+    // {"match": "routes", "src": ".*", "dest": "/index.html"},
+  ],
+  optimize: {
+    /* Example: Bundle your final build: */
+    // "bundle": true,
+  },
+  packageOptions: {
+    /* ... */
+  },
+  devOptions: {
+    /* ... */
+  },
+  buildOptions: {
+    /* ... */
+  },
+};