jsx-vanilla-loader

1.0.1 • Public • Published

Description

JSX Vanilla loader for webpack

Examples of webpack.config.js

const path = require('path');
 
module.exports = {
    mode: "development",
    devtool : 'source-map',
    entry: {
        main: "./src/main.js"
    },
    output: {
        path: path.resolve(__dirname, '../js'),
        filename: "[name].js"
    },
    module : {
    rules : [
        {
        test : /\.js$/,
        include : path.resolve(__dirname, "src"),
        loader : 'jsx-vanilla-loader'
      }
    ]
  }
}
 

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.1
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.1
    0

Package Sidebar

Install

npm i jsx-vanilla-loader

Weekly Downloads

0

Version

1.0.1

License

MIT

Unpacked Size

2.27 kB

Total Files

4

Last publish

Collaborators

  • adeonmaster