Skip to content

Instantly share code, notes, and snippets.

@filipelinhares
Created October 4, 2016 14:35
Show Gist options
  • Save filipelinhares/d2e66cd8b769591899b29830fcb0f921 to your computer and use it in GitHub Desktop.
Save filipelinhares/d2e66cd8b769591899b29830fcb0f921 to your computer and use it in GitHub Desktop.
Webpack
module.exports = {
entry: './src/scripts/main.js',
output: {
path: __dirname + '/build',
publicPath: '/build',
filename: 'bundle.js'
},
module: {
loaders: [
{
test: /\.svg$/,
loader: 'url'
}
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment