36 lines
919 B
HTML
36 lines
919 B
HTML
new file mode 100644
|
|
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Test Page</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
padding: 50px;
|
|
}
|
|
.success {
|
|
color: green;
|
|
font-size: 24px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="success">
|
|
✅ Server is running!
|
|
</div>
|
|
<p>Port: 3001</p>
|
|
<p>Time: <span id="time"></span></p>
|
|
<script>
|
|
document.getElementById('time').textContent = new Date().toLocaleString();
|
|
</script>
|
|
</body>
|
|
</html>
|
|
Index: frontend/node_modules/date-fns/esm/fp/sub/index.js
|
|
IDEA additional info:
|
|
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
|
|
<+>UTF-8
|
|
===================================================================
|