mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
13 lines
216 B
TypeScript
13 lines
216 B
TypeScript
import { defineConfig } from 'vite';
|
|
import solidPlugin from 'vite-plugin-solid';
|
|
|
|
export default defineConfig({
|
|
plugins: [solidPlugin()],
|
|
server: {
|
|
port: 3000,
|
|
},
|
|
build: {
|
|
target: 'esnext',
|
|
},
|
|
});
|