UNPKG

580 BJavaScriptView Raw
1/**
2* vue v3.4.25
3* (c) 2018-present Yuxi (Evan) You and Vue contributors
4* @license MIT
5**/
6import { initCustomFormatter, warn } from '@vue/runtime-dom';
7export * from '@vue/runtime-dom';
8
9function initDev() {
10 {
11 initCustomFormatter();
12 }
13}
14
15if (!!(process.env.NODE_ENV !== "production")) {
16 initDev();
17}
18const compile = () => {
19 if (!!(process.env.NODE_ENV !== "production")) {
20 warn(
21 `Runtime compilation is not supported in this build of Vue.` + (` Configure your bundler to alias "vue" to "vue/dist/vue.esm-bundler.js".` )
22 );
23 }
24};
25
26export { compile };