We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2121a2 commit 1c475a1Copy full SHA for 1c475a1
epicshop/epic-me/vite.config.ts
@@ -5,10 +5,14 @@ import { defineConfig } from 'vite'
5
import devtoolsJson from 'vite-plugin-devtools-json'
6
import tsconfigPaths from 'vite-tsconfig-paths'
7
8
+const port = 7788
9
+if (!(globalThis as any).loggedPort) {
10
+ console.log(`EpicMeApp running at http://localhost:${port}`)
11
+ ;(globalThis as any).loggedPort = true
12
+}
13
+
14
export default defineConfig({
- server: {
- port: 7788,
- },
15
+ server: { port },
16
plugins: [
17
{
18
name: 'strip-typegen-imports',
0 commit comments