chore: change vite config: sourcemap: inline -> true

This commit is contained in:
CrescentLeaf
2025-09-13 00:38:51 +08:00
parent 73a1536df7
commit 2ee73416e0

View File

@@ -8,7 +8,7 @@ import config from '../server/config.ts'
export default defineConfig({
plugins: [deno(), react()],
build: {
sourcemap: "inline",
sourcemap: true,
outDir: "." + config.data_path + '/page_compiled',
},
})