mirror of https://github.com/vuejs/core.git
16 lines
320 B
TypeScript
16 lines
320 B
TypeScript
|
import { defineConfig } from 'vite'
|
||
|
import Vue from '@vitejs/plugin-vue'
|
||
|
import Inspect from 'vite-plugin-inspect'
|
||
|
import * as CompilerVapor from '../packages/compiler-vapor/src'
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
Vue({
|
||
|
template: {
|
||
|
compiler: CompilerVapor
|
||
|
}
|
||
|
}),
|
||
|
Inspect()
|
||
|
]
|
||
|
})
|