First, run the command: $ yarn install
Then run the command: $ yarn dev
Open http://127.0.0.1:5173/ with your browser to see the result.
Run the command: $ yarn create-page page-name
You can write anything instead of the
page-name
.
When you run this code, it will automatically create the .html
file in the home directory --src/page-name.html
The content is as follows:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/images/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Page Name</title>
</head>
<body>
{{> header }}
<main class="wrapper">
<div class="container">Wrapper</div>
</main>
{{> footer }}
<script type="module" src="js/app.js"></script>
</body>
</html>
It also automatically adds this piece of code to vite.config.js
for you:
pageName: resolve(root, 'page-name.html'),
Run the command: $ yarn create-component component-name
You can write anything instead of the
component-name
.
When you run this code, it automatically creates the component-name.hbs
file under the src/components
folder.
It also creates _component-name.scss
file under scss/components
folder so that you can write scss and adds @import "components/component-name"
into scss/app.scss
for you.