5-4 - convert to next.js
This commit is contained in:
parent
432a72b2f2
commit
a23cb6f09c
32 changed files with 9050 additions and 371 deletions
16
next.config.js
Normal file
16
next.config.js
Normal file
|
@ -0,0 +1,16 @@
|
|||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
images: {
|
||||
remotePatterns: [
|
||||
{
|
||||
protocol: 'https',
|
||||
hostname: '**',
|
||||
},
|
||||
],
|
||||
},
|
||||
experimental: {
|
||||
optimizeCss: true,
|
||||
},
|
||||
}
|
||||
|
||||
module.exports = nextConfig
|
Loading…
Add table
Add a link
Reference in a new issue