Cutsin
Cutsin
> @bluwy thanks for your reply, I see that now! > > It doesn't make much sense for me to build it in this particular case as it's mostly various...
> @wuxiuran try using pwa plugin `base` option This doesn't work inside `sw.js`, the bundle's fileName doesn't have a prefixed-path define by `base`: ```json 'assets/column.esm.9e87e6e7.js': {..., type: 'chunk'} ```
Specify a port number can resolve this: ```ts // vite.config.ts { server: { port: 3000, hmr: { port: 3000 } } } ```