diff --git a/babel.config.js b/babel.config.js index e955840..c5735a2 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,5 +1,5 @@ module.exports = { presets: [ - '@vue/cli-plugin-babel/preset' + '@babel/preset-env' ] } diff --git a/index.html b/index.html new file mode 100644 index 0000000..3727d7d --- /dev/null +++ b/index.html @@ -0,0 +1,37 @@ + + + + + + + + Ayush Mukherjee + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/public/index.html b/public/index.html deleted file mode 100644 index bda3177..0000000 --- a/public/index.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - Ayush Mukherjee - - - - - - - - - - - - - - - - - - - - - - - -
- - - diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..3bf8c86 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,19 @@ +import { defineConfig } from 'vite' +import { createVuePlugin } from 'vite-plugin-vue2' + +export default defineConfig({ + plugins: [ + createVuePlugin(), + ], + server: { + port: 8080, + }, + resolve: { + alias: [ + { + find: '@', + replacement: path.resolve(__dirname, 'src'), + }, + ], + }, +})