From de1847fedf3b4c167538b5130905086adaf90d1c Mon Sep 17 00:00:00 2001 From: deflax Date: Sat, 4 May 2024 04:54:43 +0300 Subject: [PATCH] rename next.config mjs to js --- rfront/.dockerignore | 8 ++++++++ rfront/{next.config.mjs => next.config.js} | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 rfront/.dockerignore rename rfront/{next.config.mjs => next.config.js} (96%) diff --git a/rfront/.dockerignore b/rfront/.dockerignore new file mode 100644 index 0000000..4c7db2f --- /dev/null +++ b/rfront/.dockerignore @@ -0,0 +1,8 @@ +Dockerfile +.dockerignore +node_modules +npm-debug.log +README.md +.next +docker +.git \ No newline at end of file diff --git a/rfront/next.config.mjs b/rfront/next.config.js similarity index 96% rename from rfront/next.config.mjs rename to rfront/next.config.js index b9f2896..4f7cf4e 100644 --- a/rfront/next.config.mjs +++ b/rfront/next.config.js @@ -1,4 +1,4 @@ /** @type {import('next').NextConfig} */ module.exports = { output: "standalone", -}; +}; \ No newline at end of file