mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-12-22 17:23:22 +01:00
33 lines
723 B
JavaScript
33 lines
723 B
JavaScript
|
// @ts-check
|
||
|
|
||
|
const next = (phase, { defaultConfig }) => {
|
||
|
/**
|
||
|
* @type {import('next').NextConfig}
|
||
|
*/
|
||
|
const nextConfig = {
|
||
|
webpack: (config, options) => {
|
||
|
config.module.rules.push(
|
||
|
{
|
||
|
test: /\.svg$/,
|
||
|
issuer: /\.(tsx|ts)$/,
|
||
|
use: [{ loader: '@svgr/webpack', options: { icon: true } }]
|
||
|
},
|
||
|
{
|
||
|
test: /\.gif$/,
|
||
|
// yay for webpack 5
|
||
|
// https://webpack.js.org/guides/asset-management/#loading-images
|
||
|
type: 'asset/resource'
|
||
|
}
|
||
|
)
|
||
|
|
||
|
return typeof defaultConfig.webpack === 'function'
|
||
|
? defaultConfig.webpack(config, options)
|
||
|
: config
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nextConfig
|
||
|
}
|
||
|
|
||
|
export default next
|