arikw / vite-plugin-vue-static-sfc

Serve ".vue" files as static assets

Home Page:https://www.npmjs.com/package/vite-plugin-vue-static-sfc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vue Static SFC Plugin for Vite

Serve .vue files as static assets

Installation

npm install vite-plugin-vue-static-sfc

Usage

// vite.config.js

import staticVuePlugin from 'vite-plugin-vue-static-sfc';
// require('vite-plugin-vue-static-sfc') is also supported

export default {
  plugins: [
    staticVuePlugin()
  ]
};

Why

I've created a static website (a typing game for kids) that avoids build tools and uses vue3-sfc-loader to process .vue files dynamically at runtime.

While developing, I wanted to use Vite as an http server to serve the website and leverage its hot reloading, but it tried to process .vue files and requested to install a dedicated plugin to do so.

I just wanted Vite to serve the .vue files as if they were simple text files.

With this plugin, Vite will do that.

Notice

  • The HMR will reload the entire webpage if a change in a .vue file is detected

About

Serve ".vue" files as static assets

https://www.npmjs.com/package/vite-plugin-vue-static-sfc

License:MIT License


Languages

Language:JavaScript 100.0%