loader for load regular template in webpack.
In your webpack.config.js
or gulp-webpack
options.
var path = require('path');
module.exports = {
entry: "./src/index.js",
output: {
path: __dirname ,
filename: "bundle.js"
},
module: {
loaders: [
{ test: /\.rgl$/, loader: 'rgl' }
]
}
};