Unable to serve static files with Vite + SSR
See original GitHub issuePrerequisites
- I have written a descriptive issue title
- I have searched existing issues to ensure the bug has not already been reported
Fastify version
4.3.0
Plugin version
6.4.1
Node.js version
14.18.1
Operating system
macOS
Operating system version (i.e. 20.04, 11.3, 10)
BigSur 11.6.6
Description
Seems like fastify-static doesn’t serve files when I try to make PROD build with Vite + SSR.
Incorporating sirv
does work but when I switch to fastify-static I get
{
"message": "Route GET:/ not found",
"error": "Not Found",
"statusCode": 404
}
Steps to Reproduce
- npm init vite-plugin-ssr --skip-git
- pick any name
- pick react-ts
- replace package.json with
"scripts": {
"dev": "npm run server",
"prod": "npm run build && npm run server:prod",
"build": "vite build",
"server": "ts-node ./server",
"server:prod": "cross-env NODE_ENV=production ts-node ./server"
},
"dependencies": {
"@fastify/static": "6.4.1",
"@types/node": "18.6.1",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@vitejs/plugin-react": "2.0.0",
"cross-env": "7.0.3",
"fastify": "4.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"sirv": "2.0.2",
"ts-node": "10.9.1",
"typescript": "4.7.4",
"vite": "3.0.3",
"vite-plugin-ssr": "0.4.12"
},
"devDependencies": {
"pino-pretty": "8.1.0"
}
}
- replace ./server/index.ts with
import { createServer as createViteServer } from 'vite';
import { renderPage } from 'vite-plugin-ssr';
import path from 'path';
import fastifyStatic from '@fastify/static';
import sirv from 'sirv';
const isProduction = process.env.NODE_ENV === 'production';
const root = path.resolve();
const assets = sirv(`${root}/dist/client`, {
immutable: true,
dev: !isProduction
});
async function startServer () {
const app = fastify({
logger: {
transport:
!isProduction
? {
target: 'pino-pretty',
options: {
translateTime: 'HH:MM:ss Z',
ignore: 'pid,hostname'
}
}
: undefined
},
});
try {
if (isProduction) {
await app.register(fastifyStatic, { root: `${root}/dist/client` });
// app.addHook('onRequest', (req, reply, done) => {assets(req.raw, reply.raw, done);});
} else {
const viteDevMiddleware = await createViteServer({
root,
server: {
middlewareMode: true,
},
});
app.addHook('onRequest', (req, reply, done) => {
viteDevMiddleware.middlewares(req.raw, reply.raw, done);
});
}
app.get('*', async (req, reply) => {
const pageContextInit = { url: req.url };
const pageContext = await renderPage(pageContextInit);
const { httpResponse } = pageContext;
if (!httpResponse) return;
const { body, statusCode, contentType } = httpResponse;
reply.status(statusCode).type(contentType).send(body);
});
const port = (process.env.PORT || 3000) as number;
await app.listen({ port });
console.log(`Server running at http://localhost:${port}`);
} catch (error) {
app.log.fatal(error);
}
}
startServer();
- npm run prod
- visit http://localhost:3000/
- See 404
- go back to ./server/idex.ts and comment line 33 (await app.register(fastifyStatic, { root:
${root}/dist/client
})😉 and uncomment line 34 (app.addHook(‘onRequest’, (req, reply, done) => {assets(req.raw, reply.raw, done);})😉 - restart process and visit http://localhost:3000/
- You can see application
Expected Behavior
I should be able to see application when using fastify-static
Issue Analytics
- State:
- Created a year ago
- Comments:7 (5 by maintainers)
Top Results From Across the Web
Can't serve static during dev assets, even inside advertised ...
The simple greeting works fine, but trying localhost:3000/robots.txt fails , as does localhost:3000/public/robots.txt . npx vite build does ...
Read more >Static Asset Handling - Vite
Importing a static asset will return the resolved public URL when it is served: js import imgUrl from './img.png' document.getElementById('hero-img').src = ...
Read more >Deploying a Static Site - Vite
These guides provide instructions for performing a static deployment of your Vite site. Vite also supports Server Side Rendering. SSR refers to front-end ......
Read more >Server-Side Rendering - Vite
A typical SSR application will have the following source file structure: - index.html - server.js # main application server - src/ - main.js...
Read more >Troubleshooting - Vite
Syntax Error / Type Error happens Vite cannot handle and does not support code that only runs on non-strict mode (sloppy mode). This...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Here is the fix: https://github.com/delvedor/find-my-way/pull/297.
Here is a fix for your prototype:
However there is a lurking bug in find-my-way.