How To Serve Cdn Links For Assets In Nuxtjs?
I am working on a NUXTJs to create server side rendered website. My question is that although there is a assets/static folder in nuxt project structure to serve images & static
Solution 1:
You can set it via publicPath property in nuxt.config
export default {
build: {
publicPath: 'https://cdn.nuxtjs.org'
}
}
Post a Comment for "How To Serve Cdn Links For Assets In Nuxtjs?"