mirror of
https://github.com/liufree/obsidian-querydash.git
synced 2026-07-22 05:41:49 +00:00
commit
0eab818b0d
2 changed files with 7 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "querydash",
|
||||
"name": "QueryDash",
|
||||
"version": "1.0.7",
|
||||
"version": "1.0.8",
|
||||
"minAppVersion": "1.8.0",
|
||||
"description": "Refer to Dataview and add search, sorting, and pagination functions, just like Notion.",
|
||||
"author": "lwx",
|
||||
|
|
|
|||
|
|
@ -5,7 +5,12 @@ import react from '@vitejs/plugin-react'
|
|||
|
||||
export default defineConfig(({mode}) => {
|
||||
return {
|
||||
plugins: [react(),cssInjectedByJsPlugin()],
|
||||
plugins: [react(), cssInjectedByJsPlugin()],
|
||||
define: {
|
||||
'process.env': {
|
||||
NODE_ENV: JSON.stringify(mode)
|
||||
}
|
||||
},
|
||||
build: {
|
||||
sourcemap: mode === 'development' ? 'inline' : false,
|
||||
minify: false,
|
||||
|
|
|
|||
Loading…
Reference in a new issue