Skip to content

etherpush/sol-loader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

EtherPush: Push Your Token On Ethereum



etherpush.io  ·  GitHub @etherpush  ·  Twitter @etherpush


sol-loader

The webpack loader (sol-loader) is simply used at etherpush.io to load ethereum solidity contract.

install

npm install --save-dev sol-loader

config

The webpack config is as the following:

{
    loaders: [
    {
        test: /\.sol$/,
        loaders: ["sol-loader"]
    },
  ]
}