Answer the question
In order to leave comments, you need to log in
How to render pages in Vue.js?
I have a project where the frontend is Vue.js and the backend is Django Rest Framework . And now I'm pre-rendering by adding this code:
const path = require('path')
const PrerenderSPAPlugin = require('prerender-spa-plugin')
module.exports = {
configureWebpack: {
plugins: [
new PrerenderSPAPlugin({
staticDir: path.join(__dirname, 'dist'),
routes: ['/', '/login', '/register', '/about']
})
]
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question