vite-plugin-vue2
vite-plugin-vue2 copied to clipboard
Vite plugin for Vue 2.7
### Describe the bug 1、This is a vue2 project, and I have a component like this  2、when I packaged, the image files can't copy to the dist folder, so...
It's noteworthy that React already has an implementation of SWC. Perhaps vite-plugin-vue2 could also support it in the future.
The main issue is, that some files with javascript changes, that are hot reloaded are not executed in the browser. After hrm is triggered, the updated file is visible in...
Hi, i cannot make it work. How to use together: VIte + vite-plugin-vue2 + i18n codeblocks? when i do: ``` import { fileURLToPath, URL } from 'node:url' import { defineConfig...
I'm using Vuetify's `` component. ```vue Hello World ``` In dev mode, it can display the image correctly:  But after build, the following error is raised: ```shell Failed to...
When i add hmr: true mode: "development" to vite.config.json it does nothing (other configuration parts work). If i add --hmr to vite command i got `TypeError: Cannot read properties of...
Module information can be collected like Vue3 ```ts export async function render(url, manifest) { const { app, router } = createApp() // set the router to the desired URL before...
I used rollup to package the vue components,Two.vue.js are bundled - XXX.vue.js - XXX.vue2.js expect behavior: bundle name no .vue and just one js file eg: XXX.js this is my...
I've recently upgraded a project to Sue 2.7.*, and I am now going through a process of upgrading this repo using the example setup in the examples of this repo....
asset starts with '~@' resolved error ## example src/bar/foo.vue ``` ``` compiled ``` // actually /src/bar/@assets/foo.png // expected src/assets/foo.png ``` vite.config.ts ``` import vue from '@vitejs/plugin-vue2' import { defineConfig }...