Skip to content
This repository has been archived by the owner on Aug 6, 2021. It is now read-only.

Latest commit

 

History

History
23 lines (17 loc) · 208 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 208 Bytes

include-directive-loader

Usage

webpack rule

{
  test: /\.glsl$/,
  use: {
    loader: 'include-directive-loader',
  }
}

foo.glsl

#include ./noise.glsl

void main() {
}