5-30. nextJS
This commit is contained in:
parent
432a72b2f2
commit
93f8c057b6
51 changed files with 8939 additions and 372 deletions
17
next.config.js
Normal file
17
next.config.js
Normal file
|
@ -0,0 +1,17 @@
|
|||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
output: 'export',
|
||||
images: {
|
||||
remotePatterns: [
|
||||
{
|
||||
protocol: 'https',
|
||||
hostname: '**',
|
||||
},
|
||||
],
|
||||
},
|
||||
experimental: {
|
||||
optimizeCss: true,
|
||||
},
|
||||
}
|
||||
|
||||
module.exports = nextConfig
|
Loading…
Add table
Add a link
Reference in a new issue