You've already forked Epicnabbo-Catalogus-Updated-Daily
🆙 Fixed more 🆙
This commit is contained in:
@@ -23,3 +23,4 @@ yarn.lock
|
|||||||
/public/assets/images/generated-logos
|
/public/assets/images/generated-logos
|
||||||
CLAUDE.md
|
CLAUDE.md
|
||||||
.phpunit.cache
|
.phpunit.cache
|
||||||
|
/bootstrap/cache/filament/*
|
||||||
|
|||||||
@@ -60,7 +60,8 @@
|
|||||||
"post-autoload-dump": [
|
"post-autoload-dump": [
|
||||||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
||||||
"@php artisan package:discover --ansi",
|
"@php artisan package:discover --ansi",
|
||||||
"@php artisan filament:upgrade"
|
"@php artisan filament:upgrade",
|
||||||
|
"@php artisan filament:cache-components"
|
||||||
],
|
],
|
||||||
"post-update-cmd": [
|
"post-update-cmd": [
|
||||||
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
||||||
|
|||||||
@@ -1,42 +1,18 @@
|
|||||||
<!--
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
Rewrites requires Microsoft URL Rewrite Module for IIS
|
|
||||||
Download: https://www.iis.net/downloads/microsoft/url-rewrite
|
|
||||||
Debug Help: https://docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/using-failed-request-tracing-to-trace-rewrite-rules
|
|
||||||
-->
|
|
||||||
<configuration>
|
<configuration>
|
||||||
<system.webServer>
|
<system.webServer>
|
||||||
<rewrite>
|
<rewrite>
|
||||||
<rules>
|
<rules>
|
||||||
<rule name="Imported Rule 1" stopProcessing="true">
|
<rule name="Laravel Front Controller" stopProcessing="true">
|
||||||
<match url="^(.*)/$" ignoreCase="false" />
|
<match url=".*" />
|
||||||
<conditions>
|
<conditions logicalGrouping="MatchAll">
|
||||||
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
|
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
|
||||||
</conditions>
|
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
|
||||||
<action type="Redirect" redirectType="Permanent" url="/{R:1}" />
|
|
||||||
</rule>
|
|
||||||
<rule name="Imported Rule 2" stopProcessing="true">
|
|
||||||
<match url="^" ignoreCase="false" />
|
|
||||||
<conditions>
|
|
||||||
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
|
|
||||||
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
|
|
||||||
</conditions>
|
</conditions>
|
||||||
<action type="Rewrite" url="index.php" />
|
<action type="Rewrite" url="index.php" />
|
||||||
</rule>
|
</rule>
|
||||||
<rule name="ReverseProxyInboundRule1" stopProcessing="true">
|
|
||||||
<match url="(.*)" />
|
|
||||||
<action type="Rewrite" url="http://localhost:8080/{R:1}" />
|
|
||||||
<conditions>
|
|
||||||
<add input="{QUERY_STRING}" pattern="/?figure=(.*)" />
|
|
||||||
</conditions>
|
|
||||||
</rule>
|
|
||||||
</rules>
|
</rules>
|
||||||
<outboundRules>
|
|
||||||
<preConditions>
|
|
||||||
<preCondition name="ResponseIsHtml1">
|
|
||||||
<add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
|
|
||||||
</preCondition>
|
|
||||||
</preConditions>
|
|
||||||
</outboundRules>
|
|
||||||
</rewrite>
|
</rewrite>
|
||||||
|
<httpErrors errorMode="Detailed" />
|
||||||
</system.webServer>
|
</system.webServer>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|||||||
@@ -47,4 +47,12 @@ export default defineConfig({
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
build: {
|
||||||
|
rollupOptions: {
|
||||||
|
onwarn(warning, warn) {
|
||||||
|
if (warning.code === 'INVALID_ANNOTATION') return;
|
||||||
|
warn(warning);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user