webpack/test/hotCases/esm-output/runtime-chunk/shared.js

10 lines
150 B
JavaScript
Raw Normal View History

2025-06-23 20:22:23 +08:00
export const sharedData = {
version: "1.0.0",
timestamp: Date.now()
};
---
export const sharedData = {
version: "2.0.0",
timestamp: Date.now()
};