mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
/**
|
|
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
|
|
* for Docker builds.
|
|
*/
|
|
|
|
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
import CopyWebpackPlugin from "copy-webpack-plugin";
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
/** @type {import("next").NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
webpack: (config) => {
|
|
config.plugins.push(
|
|
new CopyWebpackPlugin({
|
|
patterns: [
|
|
{
|
|
from: path.resolve(__dirname, "templates/**/*.yml"),
|
|
to: ({ context, absoluteFilename }) => {
|
|
const relativePath = path.relative(
|
|
path.resolve(__dirname, "templates"),
|
|
absoluteFilename || context,
|
|
);
|
|
return path.join(__dirname, ".next", "templates", relativePath);
|
|
},
|
|
globOptions: {
|
|
ignore: ["**/node_modules/**"],
|
|
},
|
|
},
|
|
],
|
|
}),
|
|
);
|
|
return config;
|
|
},
|
|
|
|
/**
|
|
* If you are using `appDir` then you must comment the below `i18n` config out.
|
|
*
|
|
* @see https://github.com/vercel/next.js/issues/41980
|
|
*/
|
|
i18n: {
|
|
locales: ["en"],
|
|
defaultLocale: "en",
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|