15 lines
236 B
JavaScript
15 lines
236 B
JavaScript
|
module.exports = {
|
||
|
target: 'serverless',
|
||
|
webpack(config) {
|
||
|
config.module.rules.push({
|
||
|
test: /\.svg$/,
|
||
|
issuer: {
|
||
|
test: /\.(js|ts)x?$/,
|
||
|
},
|
||
|
use: ['@svgr/webpack'],
|
||
|
});
|
||
|
|
||
|
return config;
|
||
|
}
|
||
|
};
|