diff options
Diffstat (limited to 'snowpack.config.mjs')
-rw-r--r-- | snowpack.config.mjs | 7 |
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"}, |