[Request] Support for HTML Server Side Includes
See original GitHub issueIs your feature request related to a problem? Please describe. At the moment the Development Server dose not support HTML Server Side Includes.
Describe the solution you’d like
As a developer i want to be able to use HTML Server Side Includes in the index.template.html file.
Describe alternatives you’ve considered Add a config.json file into the statics folder. Which gets generated on the release pipeline for each environment. This is not really nice since on some cloud providers for change a simple configuration you have to push the hole app.
Additional context Environment specific configuration should not be backed into the Build. So on a CI / CD Pipeline i can build my code once and push the artifact to the all my diffrent environments. Production build is the exactly the same as i tested it on staging. So on an enviroment i can just change as example in the Environment Variable the ClientID and every new request on my website uses the new ClientId.
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (2 by maintainers)

Top Related StackOverflow Question
@Wenish what you’re asking for is out of the ordinary because the webpack server will only be present in development (not when you have code ready for production).
That being said… you can load webpack plugins in your quasar.conf file. I haven’t tried it but I found https://www.npmjs.com/package/ssi-webpack-plugin
In quasar.conf you can specify a webpack plugin by looking for the
extendWebpack(cfg)area, potentially doing something like this:pardon the Chinese! You would also need to install ssi-webpack-plugin as a dev dependency:
npm install ssi-webpack-plugin --save-devAgain I don’t use this plugin and can’t vouch for it… but that’s the basic idea. Hope it helps.
Solution from @rfox12 seems perfectly valid (thanks @rfox12 !).