()
| 10 | export * from '@vue/runtime-dom' |
| 11 | |
| 12 | export const compile = (): void => { |
| 13 | if (__DEV__) { |
| 14 | warn( |
| 15 | `Runtime compilation is not supported in this build of Vue.` + |
| 16 | (__ESM_BUNDLER__ |
| 17 | ? ` Configure your bundler to alias "vue" to "vue/dist/vue.esm-bundler.js".` |
| 18 | : __ESM_BROWSER__ |
| 19 | ? ` Use "vue.esm-browser.js" instead.` |
| 20 | : __GLOBAL__ |
| 21 | ? ` Use "vue.global.js" instead.` |
| 22 | : ``) /* should not happen */, |
| 23 | ) |
| 24 | } |
| 25 | } |