-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add playground to docs, and google analytics to it (#46)
- Loading branch information
1 parent
9d3183e
commit 8c678be
Showing
4 changed files
with
21 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
import { defineConfig } from 'vite' | ||
import react from '@vitejs/plugin-react-swc' | ||
import { vitePluginRadar } from 'vite-plugin-radar' | ||
|
||
// https://vitejs.dev/config/ | ||
export default defineConfig({ | ||
base: '/sparrowql/', | ||
plugins: [react()], | ||
plugins: [react(), vitePluginRadar({ | ||
enableDev: false, | ||
gtm: { | ||
id: 'G-ZDM0DBJJVX' | ||
} | ||
})], | ||
}) |