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


                                                     

                 
    
                                       
             




                     

    
/** @type {import("snowpack").SnowpackUserConfig } */
export default {
  mount: {
    public: "/",
    src: "/dist",
  },
  plugins: ["@snowpack/plugin-svelte"],
  optimize: {
    bundle: true,
    minify: true,
    treeshake: true,
    sourcemap: false,
    target: "es2018",
  },
};