mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-19 03:49:34 +00:00
chore(examples): update routify version to 2.x
This commit is contained in:
parent
251f986304
commit
1fdd2338f9
32 changed files with 2849 additions and 2693 deletions
11
examples/routify/api/vercel-ssr/index.js
Normal file
11
examples/routify/api/vercel-ssr/index.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
const fs = require('fs')
|
||||
const { tossr } = require('tossr')
|
||||
|
||||
const script = fs.readFileSync(require.resolve('../../dist/build/bundle.js'), 'utf8')
|
||||
const template = fs.readFileSync(require.resolve('../../dist/__app.html'), 'utf8')
|
||||
|
||||
module.exports = async (req, res) => {
|
||||
const html = await tossr(template, script, req.url, {})
|
||||
res.send(html + '\n<!--ssr rendered-->')
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue