snowpack-plugin-url-loader

1.0.0 • Public • Published

snowpack-plugin-url-loader

url loader for snowpack, use base64 encode file

Usage

Install

npm install --save-dev snowpack-plugin-url-loader

Configuration

add this plugin to your Snowpack config:

Commonly

snowpack.config.json

{
  "plugins": [
    ["snowpack-plugin-url-loader"]
  ]
}

Custom

snowpack.config.json

{
  "plugins": [
    ["snowpack-plugin-url-loader", {
      "exts": ["jpg", "png"], // only "jpg" & "png" will be inlined with
      "limit": 66666, // set maximum of file size: 66666 bytes
    }]
  ]
}

Options

Name Type Default Description
exts Array<string> ["jpg","jpeg","png","svg"] Specifying the extensions of a file will be inlined with.
limit boolean | number | string 10240 Specifying the maximum size of a file in bytes.
encoding string base64 Specify the encoding which the file will be inlined with.

Package Sidebar

Install

npm i snowpack-plugin-url-loader

Weekly Downloads

0

Version

1.0.0

License

ISC

Unpacked Size

6.56 kB

Total Files

4

Last publish

Collaborators

  • senze.fan