hensei-web/node_modules/@svgr/parcel-plugin-svgr/lib/index.js
2020-09-11 06:44:42 -07:00

8 lines
No EOL
371 B
JavaScript

"use strict";
// Parcel requires that plugins be exported with `module.exports`.
// It won't be able to load the plugin if it is exported with "export default plugin" and then transpiled.
module.exports = function svgrParcelPlugin(bundler) {
// Parcel requires that the asset be passed in as a module path.
bundler.addAssetType('svg', require.resolve('./asset'));
};