aboutsummaryrefslogtreecommitdiff
path: root/examples/helloworld/webpack.config.d/file.js
blob: 8b853e7e9c5a53e55807e50af19f4fde8206f3c8 (plain)
1
2
3
4
5
6
config.module.rules.push(
    {
        test: /\.(jpe?g|png|gif|svg)$/i,
        loader: 'file-loader'
    }
);