forked from ajaynegi45/Uttarakhand-Culture-NewUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.mjs
33 lines (29 loc) · 850 Bytes
/
next.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/** @type {import('next').NextConfig} */
const nextConfig = {
// output: "export"
reactStrictMode: true,
// images:{
// // You can use any one
// domain:process.env.NEXT_PUBLIC_DOMAIN, // Here you can give specific image
//
// // Here you can give allow all image with that url
// remotePatterns: [{
// protocol: "https",
// hostname: "website url",
// }, {
// protocol: "https",
// hostname: "*.google.com",
// }]
// }
// webpack: (config, { isServer }) => {
// // Handle TypeScript files
// config.module.rules.push({
// test: /\.tsx?$/,
// use: 'ts-loader',
// exclude: /node_modules/,
// });
//
// return config;
// }
};
export default nextConfig;