initial scaffold
This commit is contained in:
commit
3696b98582
55 changed files with 14360 additions and 0 deletions
23
next.config.ts
Normal file
23
next.config.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import type {NextConfig} from 'next';
|
||||
|
||||
const nextConfig: NextConfig = {
|
||||
/* config options here */
|
||||
typescript: {
|
||||
ignoreBuildErrors: true,
|
||||
},
|
||||
eslint: {
|
||||
ignoreDuringBuilds: true,
|
||||
},
|
||||
images: {
|
||||
remotePatterns: [
|
||||
{
|
||||
protocol: 'https',
|
||||
hostname: 'placehold.co',
|
||||
port: '',
|
||||
pathname: '/**',
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
|
||||
export default nextConfig;
|
Loading…
Add table
Add a link
Reference in a new issue