新增浏览器工具

This commit is contained in:
violettools
2026-01-28 17:18:11 +08:00
parent 70486331b7
commit 9dc80e3eb1
38 changed files with 18750 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { resolve } from 'path'
export default defineConfig({
plugins: [react()],
base: './',
resolve: {
alias: {
'@': resolve(__dirname, 'src')
}
},
build: {
outDir: 'dist',
emptyOutDir: true
},
server: {
port: 5173
}
})