fix: Switch to Tailwind v3 - v4 incompatible with Astro
This commit is contained in:
41
node_modules/@zeit/schemas/deployment/config-env.js
generated
vendored
Normal file
41
node_modules/@zeit/schemas/deployment/config-env.js
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
const maxEnvLength = 100;
|
||||
|
||||
const EnvKey = {
|
||||
type: 'string',
|
||||
pattern: '^[A-z0-9_]+$',
|
||||
minLength: 1,
|
||||
maxLength: 256
|
||||
};
|
||||
|
||||
const EnvKeys = {
|
||||
type: 'array',
|
||||
minItems: 0,
|
||||
maxItems: maxEnvLength,
|
||||
uniqueItems: true,
|
||||
items: EnvKey,
|
||||
additionalProperties: false
|
||||
};
|
||||
|
||||
const EnvValue = {
|
||||
type: 'string',
|
||||
minLength: 0,
|
||||
maxLength: 65536
|
||||
};
|
||||
|
||||
// { 'FOO': 'BAR' }
|
||||
const EnvObject = {
|
||||
type: 'object',
|
||||
minProperties: 0,
|
||||
maxProperties: maxEnvLength,
|
||||
patternProperties: {
|
||||
'.+': EnvValue
|
||||
},
|
||||
additionalProperties: false
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
EnvKey,
|
||||
EnvKeys,
|
||||
EnvValue,
|
||||
EnvObject
|
||||
};
|
||||
Reference in New Issue
Block a user