HuiLi

Results 1 comments of HuiLi

In launch.json add runtimeArg `"runtimeArgs": ["--sourcemap"]` In vite.config.js add `build:{ sourcemap: true }` here is my vite.main.config.mjs export default defineConfig({ build: { sourcemap: true, rollupOptions: { input: 'src/main.js', }, },...