mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
a1c31665cb
* fix(#6827): ensure `appEntrypoint` is referenced in Vue components * chore: add test * chore: add changeset * fix: windows handling * Update packages/integrations/vue/src/index.ts Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com> * chore: address review feedback * chore: update lockfile --------- Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
8 lines
176 B
JavaScript
8 lines
176 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import vue from '@astrojs/vue';
|
|
|
|
export default defineConfig({
|
|
integrations: [
|
|
vue({ appEntrypoint: '/src/app.ts' })
|
|
],
|
|
})
|