In the root of your project, add .gitlab-ci.yml with the configuration below.
image: node:latest
stages:| // .vscode/settings.json | |
| { | |
| "tailwindCSS.experimental.classRegex": [ | |
| ["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"], | |
| ["cn\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"], | |
| ["styled\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"] | |
| ], | |
| } |
| -- This function is based on this description: | |
| -- https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html | |
| CREATE OR REPLACE FUNCTION | |
| sign_s3_url( | |
| m_host text, | |
| m_verb text, | |
| m_resource text, | |
| m_region text, | |
| m_key text, |
| // 🤫The following code is experimental and might break in the future! | |
| // Don't use it if you are using some kind of side-effect patterns like: Helmet, GraphQL or react-side-effect. | |
| import { useRouter } from 'next/router' | |
| function Home() { | |
| const { | |
| // `String` of the actual path (including the query) shows in the browser | |
| asPath, | |
| // `String` Current route |
| import Head from 'next/head' | |
| import SEO from '../constants/seo' | |
| export default ({ | |
| title = SEO.title, | |
| description = SEO.description, | |
| pageUrl = SEO.siteUrl, | |
| mainImage = SEO.mainImage, | |
| iosApplink = SEO.quizBuzzHomeUrl, | |
| androidAppLink = SEO.quizBuzzHomeUrl, |
You're most likely using some kind of 3D or Native Maps in your App then, no?
Awaiting XCode 9.1 (which contains a fix) here's a workaround which replaces the bundled OpenGLES.framework with the version from XCode 9.0 beta 3.
| import { createCipheriv, createDecipheriv, randomBytes } from "crypto"; | |
| const ENCRYPTION_KEY: string = process.env.ENCRYPTION_KEY || ""; // Must be 256 bits (32 characters) | |
| const IV_LENGTH: number = 16; // For AES, this is always 16 | |
| /** | |
| * Will generate valid encryption keys for use | |
| * Not used in the code below, but generate one and store it in ENV for your own purposes | |
| */ | |
| export function keyGen() { |