60 lines
597 B
JavaScript
60 lines
597 B
JavaScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// export default defineConfig({
|
|
// plugins: [react()],
|
|
// server: {
|
|
// proxy: {
|
|
// '/apps': 'http://localhost:8000',
|
|
// '/add_app': 'http://localhost:8000',
|
|
// '/icon': 'http://localhost:8000',
|
|
// }
|
|
// }
|
|
// });
|
|
|
|
|
|
|
|
|
|
|
|
// import { defineConfig } from 'vite';
|
|
// import react from '@vitejs/plugin-react';
|
|
|
|
// export default defineConfig({
|
|
// plugins: [react()],
|
|
// });
|