ssr
Here are 1,661 public repositories matching this topic...
First, I am not sure how to exactly add Material UI support.
I added by doing this in client.js
<App context={context} insertCss={insertCss}>
<MuiThemeProvider>
<CssBaseline />
{route.component}
</MuiThemeProvider>
</App>
Please tell whats the right way to integrate material UI.
Material UI applies styles well when server starts. But at
Since it cost me valueable time (i did not import the global css first) - please add the these two imports at the top of your "mount with ssr" example.
import Vue from 'vue'
import 'swiper/dist/css/swiper.css'
if (process.browser) {
const VueAwesomeSwiper = require('vue-awesome-swiper/dist/ssr')
Vue.use(VueAwesomeSwiper)
}
-
Updated
Jan 31, 2020 - Shell
-
Updated
Jan 31, 2020 - JavaScript
-
Updated
Jan 31, 2020 - Python
Posting as a discussion since I don't know if there's reasons not to document.
The API documentation of @apollo/react-testing does not mention
import { wait } from '@apollo/react-testing';
while it can be imported.
https://www.apollographql.com/docs/react/api/react-testing/
Also in this documentation: https://github.com/apollographql/apollo-client/blob/master/docs/source/dev
-
Updated
Jan 31, 2020 - JavaScript
-
Updated
Jan 31, 2020 - ASP
"Babel 7.8.0 supports the new ECMAScript 2020 features by default: you don't need to enable individual plugins for nullish coalescing (??), optional chaining (?.) and dynamic import() anymore with preset-env." - https://babeljs.io/blog/2020/01/11/7.8.0
We should update zero to latest babel and add an integration test for these features. I think the right change will be [here](https://gith
-
Updated
Jan 31, 2020 - JavaScript
This is also probably a good time to recommend documenting architecture decisions in the project. The project itself is very opinionated (which is great!), so all of that should be documented to help explain the reasons behind the decisions. I'd recommend reading these:
💥 Regression Report
The SSR example does not work when running yarn dev for the first time. It becomes stuck in a "reloading due to changes" loop and occasionally throws /server-side-rendering/public/dist/node/loadable-stats.json: Unexpected end of JSON input.
Last working version
Worked up to version: Unknown
Stopped working in version: Unknown to latest
To Reproduce
-
Updated
Jan 31, 2020 - TypeScript
-
Updated
Jan 31, 2020 - Shell
Feature Request
Is your feature request related to a problem? Please describe.
The Preact Section in the readme, as they are out of date. Preact v10 has a proper hydrate method now. PR: preactjs/preact#1802.
Describe the solution you'd like
Update the
中文用户注意:
- 尽量用英文描述你的 issue
- 不要把内容堆彻在标题上,逻辑清晰地写在内容区
- 贴代码要提前格式化好,有颜色高亮那种,贴文本,不要贴图片
- 提问题前,必须仔细阅读 REMADE.md + 在已关闭的问题中寻找与自身相关的问题,90% 的可能它已经被解决
- 如果无法做到提一个合格、优秀的问题,则问题会被 close + block
BUG REPORT TEMPLATE
Vue.js version and component version
Reproduction Link
- A minimal JSBin, JSFiddle, Codepen, or a GitHub repository that can reproduce the bug.
- You coul
-
Updated
Jan 28, 2020 - JavaScript
add mobx example
I'm using this project and want to add mobx for state management.
I'm happy to PR documentation/example with some guidance!
Thoughts? @tirthbodawala
I have implemented the static file serving https://nextjs.org/docs#static-file-serving-eg-images on Next.js but seems doesn't work because my router configuration:
const routes = require('next-routes')
module.exports = routes().add('post', '/:categorySlug/:slug', 'post/post-show')I think that's because next routes detect the image url `<image src="/img/my-image.png" /
Improve this page
Add a description, image, and links to the ssr topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the ssr topic, visit your repo's landing page and select "manage topics."
What problem does this feature solve?
I trying to figure how deploy for production a Universal app if it contains buildModules. I think deploy a universal app for prod can be a little confuse and need more explications in the guide.
I'm a little confuse between:
Production environment:
if I use:
I can't build because the buildModules are not in place
Dev environm