From 62ec7b45b4cbd54b9747318447610283eda8ea00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Varga-Somogyi=20=C3=81kos?= Date: Tue, 29 Aug 2023 13:07:05 +0200 Subject: [PATCH] Rename snap.config.json to snap.config.js --- snap.config.js | 8 ++++++++ snap.config.json | 5 ----- 2 files changed, 8 insertions(+), 5 deletions(-) create mode 100644 snap.config.js delete mode 100644 snap.config.json diff --git a/snap.config.js b/snap.config.js new file mode 100644 index 0000000..5e7bff6 --- /dev/null +++ b/snap.config.js @@ -0,0 +1,8 @@ +module.exports = { + cliOptions: { + dist: 'dist', + outfileName: 'bundle.js', + src: 'src/index.js', + port: 8081 + } +}; diff --git a/snap.config.json b/snap.config.json deleted file mode 100644 index aa309bd..0000000 --- a/snap.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "dist": "dist", - "outfileName": "bundle.js", - "src": "src/index.js" -} \ No newline at end of file