about summary refs log blame commit diff stats
path: root/snowpack.config.mjs
blob: d09dc133faef983805710b5ae989f69f906f61f3 (plain) (tree)
1
2
3
4
5
6
7


                                                     

                 
    
                                       

















                                                               
/** @type {import("snowpack").SnowpackUserConfig } */
export default {
  mount: {
    public: "/",
    src: "/dist",
  },
  plugins: ["@snowpack/plugin-svelte"],
  routes: [
    /* Enable an SPA Fallback in development: */
    // {"match": "routes", "src": ".*", "dest": "/index.html"},
  ],
  optimize: {
    /* Example: Bundle your final build: */
    // "bundle": true,
  },
  packageOptions: {
    /* ... */
  },
  devOptions: {
    /* ... */
  },
  buildOptions: {
    /* ... */
  },
};