diff --git a/src/index.js b/src/index.js index 0be6019..1b05bcb 100644 --- a/src/index.js +++ b/src/index.js @@ -10,6 +10,7 @@ import Modals from './pages/Modals.vue'; import ChuckNorris from './pages/ChuckNorris.vue'; import RickAndMorty from './pages/RickAndMorty.vue'; import CookieClicker from './pages/CookieClicker.vue'; +import Vibration from './pages/Vibration.vue'; const routes = [ { path: '/', component: ToDo, name: 'ToDo' }, @@ -17,6 +18,7 @@ const routes = [ { path: '/chuck', component: ChuckNorris, name: 'Chuck Norris' }, { path: '/rickandmorty', component: RickAndMorty, name: 'Rick And Morty' }, { path: '/cookieclicker', component: CookieClicker, name: 'Cookie Clicker', meta: { container: false } }, + { path: '/vibration', component: Vibration, name: 'Vibration' }, ]; const router = createRouter({ diff --git a/src/pages/CookieClicker.vue b/src/pages/CookieClicker.vue index 0727f08..1d6f9f5 100644 --- a/src/pages/CookieClicker.vue +++ b/src/pages/CookieClicker.vue @@ -1,49 +1,129 @@ + \ No newline at end of file + + + \ No newline at end of file diff --git a/src/pages/Vibration.vue b/src/pages/Vibration.vue new file mode 100644 index 0000000..49b4ab5 --- /dev/null +++ b/src/pages/Vibration.vue @@ -0,0 +1,20 @@ + + \ No newline at end of file diff --git a/webpack.config.js b/webpack.config.js index 3d77c84..dc5e268 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -19,6 +19,7 @@ export default { compress: true, port: 9000, historyApiFallback: true, + allowedHosts: "all" }, module: { rules: [