about summary refs log tree commit diff stats
path: root/snowpack.config.mjs
diff options
context:
space:
mode:
authorana <ana@ana.st>2021-08-08 13:51:05 +0200
committerana <ana@ana.st>2021-08-08 13:51:05 +0200
commitf331da02a0bc3cc5d3f9a6ece466db5531e316ef (patch)
treef238709fe919a035936645733ee38ea8f27b65e0 /snowpack.config.mjs
parent70829a62398e862ce70cc64bbf3750fc72f21e1b (diff)
downloadeureka-marks-f331da02a0bc3cc5d3f9a6ece466db5531e316ef.tar.gz
feat: initial svelte setup
Diffstat (limited to 'snowpack.config.mjs')
-rw-r--r--snowpack.config.mjs7
1 files changed, 3 insertions, 4 deletions
diff --git a/snowpack.config.mjs b/snowpack.config.mjs
index f4340c6..d09dc13 100644
--- a/snowpack.config.mjs
+++ b/snowpack.config.mjs
@@ -1,11 +1,10 @@
 /** @type {import("snowpack").SnowpackUserConfig } */
 export default {
   mount: {
-    /* ... */
+    public: "/",
+    src: "/dist",
   },
-  plugins: [
-    /* ... */
-  ],
+  plugins: ["@snowpack/plugin-svelte"],
   routes: [
     /* Enable an SPA Fallback in development: */
     // {"match": "routes", "src": ".*", "dest": "/index.html"},