dosyaları ayırarak kaydedildiğinde build hatası verenlerin ayrılması kaldırıldı
This commit is contained in:
12
Configs.ts
12
Configs.ts
@ -1,12 +1,12 @@
|
|||||||
// build olurken bazı klasorlerin ayri script olarak kaydedilmesi
|
// build olurken bazı klasorlerin ayri script olarak kaydedilmesi
|
||||||
export const TEMPLATE_CHUNK_GROUPS: Record<string, (RegExp | string)[]> = {
|
export const TEMPLATE_CHUNK_GROUPS: Record<string, (RegExp | string)[]> = {
|
||||||
store: [/\/src\/stores\//],
|
store: [/\/src\/stores\//],
|
||||||
lott: [/\/src\/module\/cekilisler\//],
|
//lott: [/\/src\/module\/cekilisler\//],
|
||||||
user: [/\/src\/module\/kullanicilar\//],
|
//user: [/\/src\/module\/kullanicilar\//],
|
||||||
cust: [/\/src\/module\/uyeler\//],
|
//cust: [/\/src\/module\/uyeler\//],
|
||||||
acc: [/\/src\/module\/muhasebe\//],
|
//acc: [/\/src\/module\/muhasebe\//],
|
||||||
site: [/\/src\/module\/site-yonetimi\//],
|
//site: [/\/src\/module\/site-yonetimi\//],
|
||||||
aut: [/\/src\/module\/auth\//]
|
//aut: [/\/src\/module\/auth\//]
|
||||||
}
|
}
|
||||||
|
|
||||||
// id -> group_name
|
// id -> group_name
|
||||||
|
|||||||
BIN
public/docs/KVKK_Sartlari.docx
Normal file
BIN
public/docs/KVKK_Sartlari.docx
Normal file
Binary file not shown.
BIN
public/docs/cekilisevi.gov.tr_Uyelik_Sozlesmesi.docx
Normal file
BIN
public/docs/cekilisevi.gov.tr_Uyelik_Sozlesmesi.docx
Normal file
Binary file not shown.
17
public/web.config
Normal file
17
public/web.config
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<configuration>
|
||||||
|
<system.webServer>
|
||||||
|
<rewrite>
|
||||||
|
<rules>
|
||||||
|
<rule name="Handle History Mode and custom 404/500" stopProcessing="true">
|
||||||
|
<match url="(.*)" />
|
||||||
|
<conditions logicalGrouping="MatchAll">
|
||||||
|
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
|
||||||
|
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
|
||||||
|
</conditions>
|
||||||
|
<action type="Rewrite" url="/" />
|
||||||
|
</rule>
|
||||||
|
</rules>
|
||||||
|
</rewrite>
|
||||||
|
</system.webServer>
|
||||||
|
</configuration>
|
||||||
@ -40,7 +40,6 @@ export default defineConfig({
|
|||||||
if (id.includes('node_modules/pdfmake')) return 'ven_pdfmake'
|
if (id.includes('node_modules/pdfmake')) return 'ven_pdfmake'
|
||||||
if (id.includes('node_modules/html-to-pdfmake')) return 'ven_pdfmake'
|
if (id.includes('node_modules/html-to-pdfmake')) return 'ven_pdfmake'
|
||||||
if (id.includes('node_modules/vue3-pdfmake')) return 'ven_pdfmake'
|
if (id.includes('node_modules/vue3-pdfmake')) return 'ven_pdfmake'
|
||||||
if (id.includes('node_modules/vuedraggable')) return 'ven_drg'
|
|
||||||
|
|
||||||
// other node_modules files
|
// other node_modules files
|
||||||
if (id.includes('node_modules')) return 'vendor'
|
if (id.includes('node_modules')) return 'vendor'
|
||||||
|
|||||||
Reference in New Issue
Block a user