Compare commits
No commits in common. "06c59824bd2d57413398376c5b8cfec66c3e73df" and "7f0961892238f88a7cb4221cb1329359a238f361" have entirely different histories.
06c59824bd
...
7f09618922
3 changed files with 4 additions and 27 deletions
|
|
@ -82,7 +82,7 @@ define(['./workbox-54d0af47'], (function (workbox) { 'use strict';
|
|||
"revision": "3ca0b8505b4bec776b69afdba2768812"
|
||||
}, {
|
||||
"url": "index.html",
|
||||
"revision": "0.20gg38gpeso"
|
||||
"revision": "0.7ltvc2qlesg"
|
||||
}], {});
|
||||
workbox.cleanupOutdatedCaches();
|
||||
workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), {
|
||||
|
|
|
|||
|
|
@ -5,11 +5,11 @@ import './index.css'
|
|||
import { UiEvalService } from './services/UiEvalService'
|
||||
import 'devextreme-react/text-area'
|
||||
import 'devextreme-react/html-editor'
|
||||
import config from 'devextreme/core/config'
|
||||
import { licenseKey } from './devextreme-license'
|
||||
// import config from 'devextreme/core/config'
|
||||
// import { licenseKey } from './devextreme-license'
|
||||
|
||||
// Lisansı uygulama başlamadan önce kaydediyoruz
|
||||
config({ licenseKey })
|
||||
// config({ licenseKey })
|
||||
|
||||
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(<App />)
|
||||
|
||||
|
|
|
|||
|
|
@ -77,29 +77,6 @@ export default defineConfig(async ({ mode }) => {
|
|||
build: {
|
||||
outDir: 'dist',
|
||||
sourcemap: false,
|
||||
rollupOptions: {
|
||||
output: {
|
||||
manualChunks(id) {
|
||||
if (id.includes('node_modules')) {
|
||||
if (id.match(/node_modules[\\/]react/)) return 'vendor-react'
|
||||
if (id.match(/node_modules[\\/]react-dom/)) return 'vendor-reactdom'
|
||||
if (id.match(/node_modules[\\/]devextreme/)) return 'vendor-devextreme'
|
||||
if (id.match(/node_modules[\\/]@devexpress/)) return 'vendor-devexpress'
|
||||
if (id.match(/node_modules[\\/]devextreme-react/)) return 'vendor-devextreme-react'
|
||||
if (id.match(/node_modules[\\/]axios/)) return 'vendor-axios'
|
||||
if (id.match(/node_modules[\\/]formik/)) return 'vendor-formik'
|
||||
if (id.match(/node_modules[\\/]jspdf/)) return 'vendor-jspdf'
|
||||
if (id.match(/node_modules[\\/]exceljs/)) return 'vendor-exceljs'
|
||||
if (id.match(/node_modules[\\/]html2canvas/)) return 'vendor-html2canvas'
|
||||
if (id.match(/node_modules[\\/]@?react-router/)) return 'vendor-reactrouter'
|
||||
// Büyük modüller için özel chunk
|
||||
if (id.match(/src[\\/]codeParser/)) return 'chunk-codeParser'
|
||||
if (id.match(/src[\\/]views[\\/]list[\\/]Utils/)) return 'chunk-list-utils'
|
||||
return 'vendor'
|
||||
}
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
preview: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue