|
1 | 1 | import fs from 'fs';
|
2 | 2 | import colors from 'kleur';
|
3 | 3 | import path from 'path';
|
4 |
| -import sirv from 'sirv'; |
5 | 4 | import { URL } from 'url';
|
6 | 5 | import { getRequest, setResponse } from '../../../exports/node/index.js';
|
7 | 6 | import { installPolyfills } from '../../../exports/node/polyfills.js';
|
@@ -230,41 +229,6 @@ export async function dev(vite, vite_config, svelte_config) {
|
230 | 229 | });
|
231 | 230 |
|
232 | 231 | const assets = svelte_config.kit.paths.assets ? SVELTE_KIT_ASSETS : svelte_config.kit.paths.base;
|
233 |
| - const asset_server = sirv(svelte_config.kit.files.assets, { |
234 |
| - dev: true, |
235 |
| - etag: true, |
236 |
| - maxAge: 0, |
237 |
| - extensions: [] |
238 |
| - }); |
239 |
| - |
240 |
| - vite.middlewares.use(async (req, res, next) => { |
241 |
| - try { |
242 |
| - const base = `${vite.config.server.https ? 'https' : 'http'}://${ |
243 |
| - req.headers[':authority'] || req.headers.host |
244 |
| - }`; |
245 |
| - |
246 |
| - const decoded = decodeURI(new URL(base + req.url).pathname); |
247 |
| - |
248 |
| - if (decoded.startsWith(assets)) { |
249 |
| - const pathname = decoded.slice(assets.length); |
250 |
| - const file = svelte_config.kit.files.assets + pathname; |
251 |
| - |
252 |
| - if (fs.existsSync(file) && !fs.statSync(file).isDirectory()) { |
253 |
| - if (has_correct_case(file, svelte_config.kit.files.assets)) { |
254 |
| - req.url = encodeURI(pathname); // don't need query/hash |
255 |
| - asset_server(req, res); |
256 |
| - return; |
257 |
| - } |
258 |
| - } |
259 |
| - } |
260 |
| - |
261 |
| - next(); |
262 |
| - } catch (e) { |
263 |
| - const error = coalesce_to_error(e); |
264 |
| - res.statusCode = 500; |
265 |
| - res.end(fix_stack_trace(error)); |
266 |
| - } |
267 |
| - }); |
268 | 232 |
|
269 | 233 | return () => {
|
270 | 234 | const serve_static_middleware = vite.middlewares.stack.find(
|
@@ -295,13 +259,6 @@ export async function dev(vite, vite_config, svelte_config) {
|
295 | 259 | return;
|
296 | 260 | }
|
297 | 261 |
|
298 |
| - if (!decoded.startsWith(svelte_config.kit.paths.base)) { |
299 |
| - return not_found( |
300 |
| - res, |
301 |
| - `Not found (did you mean ${svelte_config.kit.paths.base + req.url}?)` |
302 |
| - ); |
303 |
| - } |
304 |
| - |
305 | 262 | if (decoded === svelte_config.kit.paths.base + '/service-worker.js') {
|
306 | 263 | const resolved = resolve_entry(svelte_config.kit.files.serviceWorker);
|
307 | 264 |
|
@@ -498,21 +455,11 @@ export async function dev(vite, vite_config, svelte_config) {
|
498 | 455 | };
|
499 | 456 | }
|
500 | 457 |
|
501 |
| -/** @param {import('http').ServerResponse} res */ |
502 |
| -function not_found(res, message = 'Not found') { |
503 |
| - res.statusCode = 404; |
504 |
| - res.end(message); |
505 |
| -} |
506 |
| - |
507 | 458 | /**
|
508 | 459 | * @param {import('connect').Server} server
|
509 | 460 | */
|
510 | 461 | function remove_static_middlewares(server) {
|
511 |
| - // We don't use viteServePublicMiddleware because of the following issues: |
512 |
| - // https://github.com/vitejs/vite/issues/9260 |
513 |
| - // https://github.com/vitejs/vite/issues/9236 |
514 |
| - // https://github.com/vitejs/vite/issues/9234 |
515 |
| - const static_middlewares = ['viteServePublicMiddleware', 'viteServeStaticMiddleware']; |
| 462 | + const static_middlewares = ['viteServeStaticMiddleware']; |
516 | 463 | for (let i = server.stack.length - 1; i > 0; i--) {
|
517 | 464 | // @ts-expect-error using internals
|
518 | 465 | if (static_middlewares.includes(server.stack[i].handle.name)) {
|
@@ -563,24 +510,3 @@ async function find_deps(vite, node, deps) {
|
563 | 510 |
|
564 | 511 | await Promise.all(branches);
|
565 | 512 | }
|
566 |
| - |
567 |
| -/** |
568 |
| - * Determine if a file is being requested with the correct case, |
569 |
| - * to ensure consistent behaviour between dev and prod and across |
570 |
| - * operating systems. Note that we can't use realpath here, |
571 |
| - * because we don't want to follow symlinks |
572 |
| - * @param {string} file |
573 |
| - * @param {string} assets |
574 |
| - * @returns {boolean} |
575 |
| - */ |
576 |
| -function has_correct_case(file, assets) { |
577 |
| - if (file === assets) return true; |
578 |
| - |
579 |
| - const parent = path.dirname(file); |
580 |
| - |
581 |
| - if (fs.readdirSync(parent).includes(path.basename(file))) { |
582 |
| - return has_correct_case(parent, assets); |
583 |
| - } |
584 |
| - |
585 |
| - return false; |
586 |
| -} |
0 commit comments