location / {
proxy_pass http://127.0.0.1:3000;
proxy_read_timeout 120;
proxy_connect_timeout 40;
proxy_redirect off;
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<svg> | |
<use :href="symbolId" /> | |
</svg> | |
</template> | |
<script> | |
export default { | |
props: ['icon'], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<svg v-bind="svgAttributes" v-html="svgContent"></svg> | |
</template> | |
<script> | |
export default { | |
props: ['icon'], | |
data() { | |
return { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<svg | |
v-bind="svgAttributes" | |
v-html="svgContent" | |
> | |
</svg> | |
</template> | |
<script> | |
export default { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@layer utilities { | |
.pb-safe { | |
padding-bottom: env(safe-area-inset-bottom); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace App\Providers; | |
use DB; | |
use Illuminate\Support\ServiceProvider; | |
class AppServiceProvider extends ServiceProvider | |
{ | |
/** | |
* Bootstrap any application services. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"rules": { | |
"@PSR2": true, | |
"ordered_imports": { | |
"sort_algorithm": "length" | |
}, | |
"array_syntax": { | |
"syntax": "short" | |
}, | |
"no_unused_imports": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* is not a touch device */ | |
@media (hover: hover) { | |
body { text-rendering: optimizeLegibility; } | |
} | |
/* is a touch device */ | |
@media (hover: none) { | |
body { text-rendering: optimizeSpeed; } | |
} |
NewerOlder