Svelte demo app template project

This commit is contained in:
codevictory 2022-03-10 22:08:33 +02:00
commit 721dd6a072
29 changed files with 9637 additions and 0 deletions

9
playwright.config.js Normal file
View file

@ -0,0 +1,9 @@
/** @type {import('@playwright/test').PlaywrightTestConfig} */
const config = {
webServer: {
command: 'npm run build && npm run preview',
port: 3000
}
};
export default config;