mCaptcha/webpack.common.js

24 lines
402 B
JavaScript
Raw Normal View History

2021-04-09 11:51:43 +03:00
module.exports = {
entry: {
main: './templates/index.js',
},
module: {
rules: [
{
test: /\.html$/,
use: ['html-loader'],
},
{
test: /\.(svg|png|jpg|gif)$/,
use: {
loader: 'file-loader',
options: {
name: '[name].[hash].[ext]',
outputPath: 'imgs',
},
},
},
],
},
};