diff --git a/server/dist/server.js b/server/dist/server.js
index e1ab0ee40eb3ea3d0f9eb50c2146b6a74e93f72a..e28620721f64c054c24e4dcd96f9aea7008508ec 100644
--- a/server/dist/server.js
+++ b/server/dist/server.js
@@ -8,3 +8,7 @@ app.get('/', (req, res) => { res.send('Hello World') })
 const PORT = process.env.PORT || 3000
 app.listen(PORT, () => { console.log(`Server is running in http://localhost:${PORT}`) })
 // # sourceMappingURL=server.js.map
+
+app.listen(3000, '0.0.0.0', function () {
+  console.log('Listening to port:  ' + 3000)
+})
diff --git a/src/main.js b/src/main.js
index 31345d71f4c3e8b70b64e162d539b4eba071bdc8..3befa251f21b2693af90c1c1e0879e5f3a2a7444 100644
--- a/src/main.js
+++ b/src/main.js
@@ -1,9 +1,9 @@
 import { createApp } from 'vue'
 import App from './App.vue'
-import VueSweetalert2 from 'vue-sweetalert2'
-import 'sweetalert2/dist/sweetalert2.min.css'
-
 // add routing script to the main
 import router from './router'
 
-createApp(App).use(VueSweetalert2).use(router).mount('#app')
+// const options = {
+//   confirmButtonColor: '#1a4273'
+// }
+createApp(App).use(router).mount('#app')
diff --git a/vue.config.js b/vue.config.js
new file mode 100644
index 0000000000000000000000000000000000000000..7993e831b6bf39bc601b9327d6d87497a62f687d
--- /dev/null
+++ b/vue.config.js
@@ -0,0 +1,3 @@
+export const devServer = {
+  host: '0.0.0.0'
+};
\ No newline at end of file