yzydeveloper / vite-plugin-print-urls

print server urls

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vite-plugin-print-urls

print server urls


before use

下午1:12:56 [vite] page reload index.html
下午1:13:01 [vite] hmr update index.css

after use

下午1:12:56 [vite] page reload index.html
    > Local: http://localhost:3000/
    > Network: use `--host` to expose
下午1:13:01 [vite] hmr update index.css
    > Local: http://localhost:3000/
    > Network: use `--host` to expose

Install

npm i -D vite-plugin-print-urls

Add plugin to your vite.config.ts:

import PrintUrlsPlugin from 'vite-plugin-print-urls'

export default defineConfig(() => {
    return {
        plugins: [
            PrintUrlsPlugin()
        ],
    }
})

About

print server urls

License:MIT License


Languages

Language:TypeScript 92.9%Language:HTML 5.1%Language:CSS 2.0%