Add minor changes on plugins examples-style

This commit is contained in:
Andrey Antukh
2026-02-23 18:02:21 +01:00
parent 4ccbc612cb
commit 207bc795c0
3 changed files with 5 additions and 6 deletions

View File

@@ -3,8 +3,6 @@
<head>
<meta charset="utf-8" />
<title>Penpot plugin styles</title>
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" href="/src/styles.css" />

View File

@@ -6,8 +6,9 @@
"scripts": {
"dev": "vite",
"build": "vite build",
"build:watch": "vite build --watch --mode development",
"preview": "vite preview",
"watch": "vite build --watch --mode development",
"init": "concurrently --kill-others --names build,serve \"pnpm run watch\" \"pnpm run serve\"",
"serve": "vite preview",
"lint": "eslint ."
}
}

View File

@@ -5,12 +5,12 @@ import tsconfigPaths from 'vite-tsconfig-paths';
export default defineConfig({
root: __dirname,
server: {
port: 4201,
port: 4202,
host: '0.0.0.0',
},
preview: {
port: 4201,
port: 4202,
host: '0.0.0.0',
},