mirror of https://github.com/vuejs/core.git
21 lines
405 B
TypeScript
21 lines
405 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({
|
|
build: {
|
|
target: 'esnext'
|
|
},
|
|
clearScreen: false,
|
|
plugins: [
|
|
Vue({
|
|
isProduction: true,
|
|
template: {
|
|
compiler: CompilerVapor
|
|
}
|
|
}),
|
|
Inspect()
|
|
]
|
|
})
|