Migrating a Legacy Project from Vue CLI to Vite
Recently, a ticket was added to our sprint with the goal of reducing packages with critical and high-risk vulnerabilities in a legacy project. This task involves migrating a Vue 2 project that uses the Vue CLI as the build tool to Vite.
This is a great opportunity to modernize your technology stack and take advantage of the performance benefits Vite offers. In this article, I will share the main steps I followed to complete the migration.
What is Vite?
Vite (pronounced “veet”) is a build tool designed to provide a faster (and indeed fast) and streamlined development experience for modern web projects.
With Vite, you get significantly reduced build times, a blazingly fast development server, and a simplified configuration process.
Migration steps
1. Update package.json
The first step is to remove all Vue CLI dependencies from the project. This includes Babel-related packages, the babel.config.js configuration file, and core-js dependencies.
<code>//package.json "@vue/cli-plugin-babel": "~5.0.8", //remove "@vue/cli-plugin-e2e-nightwatch": "~5.0.8", //remove "@vue/cli-plugin-eslint": "~5.0.8", //remove "@vue/cli-plugin-unit-jest": "~5.0.8", //remove "@vue/cli-service": "~5.0.8", //remove "core-js": "^3.6.4", //remove "@babel/core": "^7.8.4", //remove "babel-core": "^7.0.0-bridge.0", //remove "babel-jest": "^25.1.0", //remove </code>
If your ESLint configuration uses "babel-eslint" as the parser, you need to replace it.
<code>//package.json "babel-eslint": "^10.0.3", //remove</code>
I migrated my ESLint configuration from .eslintrc to the modern eslint.config.mjs format and updated ESLint to version 8, which I highly recommend.
<code>npm install eslint@8 eslint-plugin-vue@8 --save-dev npx @eslint/migrate-config .eslintrc.js</code>
After cleaning these dependencies, I added Vite and a plugin for Vue integration:
<code>npm install vite @vitejs/plugin-vue2 --save-dev</code>
2. Set up Vite
Like many other libraries, Vite uses a configuration file (vite.config.js) in the project root directory to define build and development options. Here's an easy place to start:
<code>import { defineConfig } from 'vite' import vue2 from '@vitejs/plugin-vue2' export default defineConfig({ plugins: [vue2()], resolve: { extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue'], alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) } } });</code>
3. Move and update index.html
In Vue CLI, the index.html file is usually located in the public folder. However, Vite expects it to be in the root directory of the project. Move the files to the root directory and update any path references as needed.
<code>mv public/index.html index.html</code>
<code><link href="<%= BASE_URL %>favicon.ico" rel="icon"></link> <link href="/favicon.ico" rel="icon"></link></code>
Include main.js because we no longer auto-inject.
4. Update environment variables
Vite handles environment variables differently. Make sure to update or create the .env file and add the VITE_ prefix to all variables you want to expose. For example:
<code>VITE_API_URL=https://api.example.com</code>
<code>// router/index.js //remove base: process.env.BASE_URL, //add base: import.meta.env.BASE_URL,</code>
5. Update script
Finally, I updated the script in package.json to use the Vite binaries instead of the Vue CLI. They look like this now:
<code>//from "scripts": { "serve": "vue-cli-service serve --port 8084", "dev": "npm run serve", "build": "vue-cli-service build", "test:unit": "vue-cli-service test:unit", "test:e2e": "vue-cli-service test:e2e --headless", "lint": "vue-cli-service lint", "test": "npm run test:unit && npm run test:e2e" }, //to "scripts": { "serve": "vite --port 8084", "dev": "npm run serve", "build": "vite build", "test:e2e": "nightwatch --headless", "test:unit": "vitest --run", "test": "npm run test:unit && npm run test:e2e", "lint": "eslint ." },</code>
With these changes, you can now run your Vue 2 projects with Vite and enjoy all the benefits it brings, especially improved build performance.
Next Steps
In my next article, I will share how to enable Nightwatch without the Vue CLI plugin and migrate Jest to Vitest. stay tuned!
If you have any questions or want to share your own experiences with Vite, feel free to leave a comment! ?
The above is the detailed content of Migrating a Legacy Project from Vue CLI to Vite. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

Discussion on the realization of parallax scrolling and element animation effects in this article will explore how to achieve similar to Shiseido official website (https://www.shiseido.co.jp/sb/wonderland/)...

Learning JavaScript is not difficult, but it is challenging. 1) Understand basic concepts such as variables, data types, functions, etc. 2) Master asynchronous programming and implement it through event loops. 3) Use DOM operations and Promise to handle asynchronous requests. 4) Avoid common mistakes and use debugging techniques. 5) Optimize performance and follow best practices.

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

Explore the implementation of panel drag and drop adjustment function similar to VSCode in the front-end. In front-end development, how to implement VSCode similar to VSCode...
