Back to Snowpack

@snowpack/plugin-optimize

plugins/plugin-optimize/README.md

3.8.53.2 KB
Original Source

@snowpack/plugin-optimize

Optimize your unbundled Snowpack app:

Usage

From a terminal, run the following:

npm install --save-dev @snowpack/plugin-optimize

Then add this plugin to your Snowpack config:

js
// snowpack.config.mjs
export default {
  plugins: [
    [
      '@snowpack/plugin-optimize',
      {
        /* see options below */
      },
    ],
  ],
};

Plugin Options

NameTypeDescription
minifyJSbooleanEnable JS minification (default: true)
minifyCSSbooleanEnable CSS minification (default: true)
minifyHTMLbooleanEnable HTML minification (default: true)
preloadModulesbooleanExperimental: Add deep, optimized <link rel="modulepreload"> tags into your HTML. (default: false)
preloadCSSbooleanExperimental: Eliminate .css.proxy.js files and combine imported CSS into one file for better network performance (default: false)
preloadCSSFileNamestringIf preloading CSS, change the name of the generated CSS file. Used only in conjunction with preloadCSS: true (default: /imported-styles.css)
targetstring,string[]The language target(s) to transpile to. This can be a single string (ex: "es2018") or an array of strings (ex: ["chrome58","firefox57"]). If undefined, no transpilation will be done. See esbuild documentation for more.