firebase-frameworks
Advanced tools
Comparing version 0.4.2-canary.896e320 to 0.4.2-canary.918b28a
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ID_TOKEN_MAX_AGE = exports.COOKIE_MAX_AGE = exports.LRU_TTL = exports.LRU_MAX_INSTANCES = exports.DEFAULT_REGION = exports.FIREBASE_FRAMEWORKS_VERSION = "0.4.2-canary.896e320" | ||
exports.ID_TOKEN_MAX_AGE = exports.COOKIE_MAX_AGE = exports.LRU_TTL = exports.LRU_MAX_INSTANCES = exports.DEFAULT_REGION = exports.FIREBASE_FRAMEWORKS_VERSION = "0.4.2-canary.918b28a" | ||
exports.FIREBASE_ADMIN_VERSION = '^10.1.0'; | ||
@@ -8,3 +8,3 @@ exports.FIREBASE_FUNCTIONS_VERSION = '^3.20.1'; | ||
exports.LRU_CACHE_VERSION = '^7.8.1'; | ||
exports.FIREBASE_FRAMEWORKS_VERSION = "0.4.2-canary.896e320" | ||
exports.FIREBASE_FRAMEWORKS_VERSION = "0.4.2-canary.918b28a" | ||
exports.DEFAULT_REGION = 'us-central1'; | ||
@@ -11,0 +11,0 @@ exports.LRU_MAX_INSTANCES = 100; |
{ | ||
"name": "firebase-frameworks", | ||
"version": "0.4.2-canary.896e320", | ||
"version": "0.4.2-canary.918b28a", | ||
"description": "Experimental addon to the Firebase CLI to add web framework support", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -84,2 +84,18 @@ # Firebase CLI framework-awareness | ||
### Common Configurations | ||
#### Add `cleanUrls` option | ||
By default, a page created on `/pages/foo/bar.jsx` is only accessible through the url `/foo/bar.html`. | ||
To make the page accessible on `/foo/bar` instead, add `cleanUrls` option to your hosting config in firebase.json. | ||
```json | ||
{ | ||
"hosting": { | ||
"source": ".", | ||
"cleanUrls": true | ||
} | ||
} | ||
``` | ||
# Deploy Angular | ||
@@ -86,0 +102,0 @@ |
Sorry, the diff of this file is not supported yet
81985
157