# vst **Repository Path**: lutepluto/vst ## Basic Information - **Project Name**: vst - **Description**: No description available - **Primary Language**: HTML/CSS - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-06-15 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vst #### 开发 ```bash $ npm install $ npm start ``` 默认访问`8080`端口查看页面:http://localhost:8080/build/pages/**/*.html 具体页面 URL 与 `src/pages/` 目录下的页面一一对应。如登陆页 login.html 的路径为 `src/pages/login.html`,则页面 URL 地址为 [http://localhost:8080/build/pages/login.html](http://localhost:8080/build/pages/login.html)。 ⚠️注意:无法直接通过打开 HTML 页面来浏览静态页面效果,无论是 `src/pages/` 目录下的 HTML 页面还是编译后 `build` 目录下的页面,直接打开均无法正常渲染。 ### 编译 ```bash $ npm install $ npm run build ``` ### 项目结构 ``` |-src |-images 所有的图片 |-pages 所有的页面 |-scripts | |----entries 包含每一个页面对应的 js | |---- *.js 其他公共 js 或者使用的 js libs | |-styles |---mixins |---pages 包含每一个页面对应的样式 |---main.scss 包含所有页面使用到的公共样式 ```