This tiny Snowpack plugin will stringify wanted files so they can be loaded as modules.
npm install snowpack-plugin-raw-file-loader.md, .svg etc.
#### snowpack.config.js
``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
`js
import someMarkdown from './some-path/some-markdown'
...
``