feat: bootstrap next.js + tailwind + deps
This commit is contained in:
19
next.config.ts
Normal file
19
next.config.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import type { NextConfig } from 'next'
|
||||
|
||||
const config: NextConfig = {
|
||||
output: 'standalone',
|
||||
experimental: {
|
||||
serverActions: { allowedOrigins: ['preis.kuns.dev'] },
|
||||
},
|
||||
images: {
|
||||
remotePatterns: [
|
||||
{ protocol: 'https', hostname: '**.amazon.com' },
|
||||
{ protocol: 'https', hostname: '**.amazon.de' },
|
||||
{ protocol: 'https', hostname: '**.media-amazon.com' },
|
||||
{ protocol: 'https', hostname: '**.idealo.com' },
|
||||
{ protocol: 'https', hostname: '**.geizhals.de' },
|
||||
],
|
||||
},
|
||||
}
|
||||
|
||||
export default config
|
||||
Reference in New Issue
Block a user