From 343fd12f0ada1bb48d1b2b3e38991faa51425d37 Mon Sep 17 00:00:00 2001 From: Jisu-Woniu <31986081+Jisu-Woniu@users.noreply.github.com> Date: Fri, 8 Dec 2023 15:27:31 +0800 Subject: [PATCH] build: :zap: Remove Vue Options API support for space. --- CHANGELOG.md | 6 ++++++ vite.config.ts | 1 + 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8f99e6..eb7124a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [unreleased] + +### Build + +- :zap: Remove Vue Options API support for space. + ## [1.3.0] - 2023-12-07 ### Documentation diff --git a/vite.config.ts b/vite.config.ts index 0c74b51..cff8eb1 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -46,4 +46,5 @@ export default defineConfig(async () => ({ // produce sourcemaps for debug builds sourcemap: !!process.env.TAURI_DEBUG, }, + define: { __VUE_OPTIONS_API__: false }, }));