This repository has been archived by the owner on May 23, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Quasar v0.16, enable vue-router history mode (#17)
- Support history mode through the HABotHttpContext - Reconfigure bundle splitting - Cleanup the config - Migrate the service worker to workbox - Change default route (chat) to '/' - Replace moment.js by date-fns (much smaller) Temporary regressions: Cannot use the service worker in dev mode to debug web push Gzip compression is broken (some resources aren't gzipped) Signed-off-by: Yannick Schaus <[email protected]>
- Loading branch information
Showing
15 changed files
with
4,908 additions
and
4,104 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,27 @@ | ||
{ | ||
"presets": [ | ||
[ "env", {"modules": false} ], | ||
"stage-2" | ||
[ | ||
"@babel/preset-env", { | ||
"modules": false, | ||
"loose": false, | ||
"useBuiltIns": "usage" | ||
} | ||
], | ||
[ | ||
"@babel/preset-stage-2", { | ||
"modules": false, | ||
"loose": false, | ||
"useBuiltIns": true, | ||
"decoratorsLegacy": true | ||
} | ||
] | ||
], | ||
"plugins": ["transform-runtime"], | ||
"comments": true | ||
"plugins": [ | ||
[ | ||
"@babel/transform-runtime", { | ||
"polyfill": false, | ||
"regenerator": false | ||
} | ||
] | ||
] | ||
} |
Oops, something went wrong.