Here’s what I came up with. https://gist.github.com/RichAyotte/8243ebf768f059a634206a201f5c5851

Best posts made by RichAyotte
-
RE: quasar dev command to use https
Latest posts made by RichAyotte
-
RE: Quasar v0.17.10, CLI v0.17.13, Extras v2.0.6 & Vue CLI plugin v0.17 are out!
Swipeable and animated QTab panes
Nice! I can now replace my Carousel/QTab hack
-
RE: Quasar & Quasar CLI v0.17.0 are out! SSR arrived.
So many goodies in this release. Using QTable grid will be my first refactor but I’ll probably be implementing all of the new features.
I have a question about preFetch. How does it differ from beforeCreate?
Thank you for this very easy and smooth upgrade.
-
RE: Quasar v0.15.2 is out!
I’m still working through the migration from 0.14 but it’s going well and it’ll be totally worth it when done. Thanks again for this amazing work.
-
RE: Webpack3 starter kit
Anyone who’s migrating to WP3 and noticed that hot reload stopped working can safely remove the event subscription.
In
build/hot-reload.js
Replaceconst hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true') hotClient.subscribe(event => { if (event.action === 'reload') { // eslint-disable-next-line no-undef window.location.reload() } })
with
require('webpack-hot-middleware/client?noInfo=true&reload=true')
-
RE: Questions about q-route-tab in 0.14
I didn’t notice a
<router-view/>
in that screenshot, did you include it? Also, describe what’s not working. -
RE: quasar dev command to use https
Here’s what I came up with. https://gist.github.com/RichAyotte/8243ebf768f059a634206a201f5c5851
-
RE: Sequelize ORM
Are you trying to use Sequelize on the frontend as in the browser?
-
RE: Serve file from root in dev server?
I’ve made a few tweaks.
Instead of using the CopyWebpackPlugin, I took a simpler approach by adding the following to
script.dev.js
// serve root static assets app.use(path.posix.join( webpackConfig.output.publicPath , '/' ), express.static('./src/root'))
And then in
script.build.js
add:shell.cp('-R', 'src/root/*', targetPath)