snowpack-plugin-raw-file-loader
v1.0.9
Published
This tiny Snowpack plugin will stringify wanted files so they can be loaded as modules.
Downloads
125
Maintainers
Readme
snowpack-plugin-raw-file-loader
This tiny Snowpack plugin will stringify wanted files so they can be loaded as modules. For example .md
, .svg
etc.
snowpack.config.js
module.exports = {
plugins: [
["snowpack-plugin-raw-file-loader", {
exts: [".txt", ".md", ".svg", ...], // Add file extensions saying what files should be loaded as strings in your snowpack application. Default: '.txt'
}],
],
}
Usage
import someMarkdown from './some-path/some-markdown'
...