1.0.2 • Published 3 years ago

craco-raw-loader v1.0.2

Weekly downloads
277
License
MIT
Repository
-
Last release
3 years ago

Craco Raw Plugin

MIT License

This is a craco plugin that makes it easy to use the webpack raw-loader with create-react-app version >= 2.

Installation

$ yarn add -D craco-raw-loader

# OR

$ npm install craco-raw-loader --save-dev

Basic Usage

craco-raw-loader expect a test option containing your regex selector.

Here is a simple craco.config.js example for frag (OpenGL Fragment Shader) files:

const rawLoader = require('craco-raw-loader')

module.exports = {
    plugins: [
     { 
       plugin: rawLoader,
       options: { test: /\.frag$/ }
     }
}