pelletiermaxime / craco-raw-loader

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 = {
  webpack: {
    plugins: [
     { plugin: rawLoader,
       options: { test: /\.frag$/ }
     }
  ]
}

About

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

License:MIT License


Languages

Language:JavaScript 100.0%