|
|
@@ -1,5 +1,5 @@
|
|
|
-import { defineConfig, transformWithEsbuild } from 'vite';
|
|
|
import react from '@vitejs/plugin-react';
|
|
|
+import { defineConfig, transformWithEsbuild } from 'vite';
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
export default defineConfig({
|
|
|
@@ -7,14 +7,16 @@ export default defineConfig({
|
|
|
{
|
|
|
name: 'treat-js-files-as-jsx',
|
|
|
async transform(code, id) {
|
|
|
- if (!id.match(/src\/.*\.js$/)) return null
|
|
|
+ if (!/src\/.*\.js$/.test(id)) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
|
|
|
// Use the exposed transform from vite, instead of directly
|
|
|
// transforming with esbuild
|
|
|
return transformWithEsbuild(code, id, {
|
|
|
loader: 'jsx',
|
|
|
jsx: 'automatic',
|
|
|
- })
|
|
|
+ });
|
|
|
},
|
|
|
},
|
|
|
react(),
|
|
|
@@ -33,10 +35,16 @@ export default defineConfig({
|
|
|
manualChunks: {
|
|
|
'react-core': ['react', 'react-dom', 'react-router-dom'],
|
|
|
'semi-ui': ['@douyinfe/semi-icons', '@douyinfe/semi-ui'],
|
|
|
- 'semantic': ['semantic-ui-offline', 'semantic-ui-react'],
|
|
|
- 'visactor': ['@visactor/react-vchart', '@visactor/vchart'],
|
|
|
- 'tools': ['axios', 'history', 'marked'],
|
|
|
- 'react-components': ['react-dropzone', 'react-fireworks', 'react-telegram-login', 'react-toastify', 'react-turnstile'],
|
|
|
+ semantic: ['semantic-ui-offline', 'semantic-ui-react'],
|
|
|
+ visactor: ['@visactor/react-vchart', '@visactor/vchart'],
|
|
|
+ tools: ['axios', 'history', 'marked'],
|
|
|
+ 'react-components': [
|
|
|
+ 'react-dropzone',
|
|
|
+ 'react-fireworks',
|
|
|
+ 'react-telegram-login',
|
|
|
+ 'react-toastify',
|
|
|
+ 'react-turnstile',
|
|
|
+ ],
|
|
|
},
|
|
|
},
|
|
|
},
|
|
|
@@ -44,9 +52,9 @@ export default defineConfig({
|
|
|
server: {
|
|
|
proxy: {
|
|
|
'/api': {
|
|
|
- target: "http://localhost:3000",
|
|
|
+ target: 'http://localhost:3000',
|
|
|
changeOrigin: true,
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
});
|