We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 868bfaf commit 1575d73Copy full SHA for 1575d73
package.json
@@ -5,7 +5,7 @@
5
"type": "module",
6
"scripts": {
7
"dev": "vite",
8
- "build": "tsc -b && vite build",
+ "build": "tsc --skipLibCheck --noEmitOnError && vite build",
9
"lint": "eslint . --max-warnings 999999",
10
"preview": "vite preview",
11
"predeploy": "npm run build",
vite.config.ts
@@ -4,11 +4,5 @@ import react from '@vitejs/plugin-react'
4
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
- base: '/leetcode-234-palindrome-linked-list/', // 设置为仓库名称
- test: {
- globals: true,
- environment: 'jsdom',
- setupFiles: ['./src/test/setup.ts'],
12
- css: true
13
- }
+ base: '/leetcode-234-palindrome-linked-list/' // 设置为仓库名称
14
})
0 commit comments