Spaces:
Runtime error
Runtime error
| module.exports = function () { | |
| return { | |
| name: 'loaders', | |
| configureWebpack() { | |
| return { | |
| module: { | |
| rules: [ | |
| { | |
| test: /\.(gif|png|jpe?g|svg)$/i, | |
| exclude: /\.(mdx?)$/i, | |
| use: ['file-loader', { loader: 'image-webpack-loader' }], | |
| }, | |
| ], | |
| }, | |
| }; | |
| }, | |
| }; | |
| }; | |