fedisearch/application/next.config.js

20 wiersze
293 B
JavaScript

module.exports = {
webpack (config) {
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack']
})
return config
},
async redirects () {
return [
{
source: '/',
destination: '/feeds',
permanent: true
}
]
}
}