module.exports = (config, context) => { | |
return { | |
...config, | |
module: { | |
...config.module, | |
rules: [ | |
...config.module.rules, | |
{ | |
test: /\.html$/i, | |
use: 'raw-loader', | |
}, | |
], | |
}, | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment