This file contains hidden or 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
| # Normalize EOL for all files that Git considers text files. | |
| * text=auto eol=lf | |
| *.mp4 filter=lfs diff=lfs merge=lfs -text | |
| *.pixelover filter=lfs diff=lfs merge=lfs -text | |
| *.blend filter=lfs diff=lfs merge=lfs -text | |
| *.glb filter=lfs diff=lfs merge=lfs -text | |
| *.gltf filter=lfs diff=lfs merge=lfs -text | |
| *.pdf filter=lfs diff=lfs merge=lfs -text | |
| *.avi filter=lfs diff=lfs merge=lfs -text | |
| *.efkefc filter=lfs diff=lfs merge=lfs -text |
This file contains hidden or 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
| ```glsl | |
| shader_type canvas_item; | |
| uniform float offset: hint_range(0.0, 10.0); | |
| uniform sampler2D SCREEN_TEXTURE : hint_screen_texture, filter_linear_mipmap; | |
| void fragment() { | |
| vec2 uv = UV; | |
| vec2 halfpixel = SCREEN_PIXEL_SIZE / 2.0; |
This file contains hidden or 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
| // next.config.js | |
| module.exports = { | |
| async rewrites() { | |
| return [ | |
| { | |
| source: "/search", // Route in your app | |
| destination: "https://aqua-feel-352693.framer.app", // External destination | |
| }, | |
| ]; | |
| }, |
This file contains hidden or 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
| /** @type {import('next-sitemap').IConfig} */ | |
| module.exports = { | |
| siteUrl: "https://apecoin.com", // Base URL of your site | |
| exclude: ["/**/rinkeby", "/**/test", "/**/testnet"], // Paths to exclude from the sitemap | |
| generateRobotsTxt: true, // Enable robots.txt generation | |
| robotsTxtOptions: { | |
| policies: [ | |
| { | |
| userAgent: "*", // Apply to all bots |
This file contains hidden or 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
| apiVersion: triggers.tekton.dev/v1alpha1 | |
| kind: EventListener | |
| metadata: | |
| name: jira-listener | |
| spec: | |
| serviceAccountName: tekton-triggers-admin | |
| triggers: | |
| - name: jira-trigger | |
| interceptors: | |
| - ref: |