This pull request introduces the initial setup for the workspace-html project, including a static HTML page, Vite configuration for development and preview, and updated documentation.
Adds a static HTML page with "hello world" as its content in index.html, establishing the project's entry point.
Introduces Vite for development and preview purposes, with a package.json file that includes Vite as a development dependency and scripts for development (dev), build (build), and preview (preview with --no-open option to prevent automatic browser opening).
Configures Vite to not automatically open the browser on preview with a vite.config.js file, ensuring the development environment meets the project's requirements.
Updates the README.md to provide instructions on using Vite for page previews, including steps for starting the development server and previewing pages without auto-open, enhancing the project's documentation for better developer guidance.
Related to #1
This pull request introduces the initial setup for the
workspace-html
project, including a static HTML page, Vite configuration for development and preview, and updated documentation.index.html
, establishing the project's entry point.package.json
file that includes Vite as a development dependency and scripts for development (dev
), build (build
), and preview (preview
with--no-open
option to prevent automatic browser opening).vite.config.js
file, ensuring the development environment meets the project's requirements.For more details, open the Copilot Workspace session.