Skip to content
Compare
Choose a tag to compare
@astrobot-houston astrobot-houston released this 09 May 10:08
· 1129 commits to main since this release
770b9f0

Minor Changes

  • #10929 082abb8 Thanks @florian-lefebvre! - Adds a devtools option

    You can enable the official Vue DevTools while working in development mode by setting devtools:true in your vue() integration config:

    import { defineConfig } from 'astro/config';
    import vue from '@astrojs/vue';
    
    export default defineConfig({
      integrations: [vue({ devtools: true })],
    });